body {
    margin: 0;
    padding: 0;
}

ul, li {
    list-style: none;
}

.top {
    width: 100%;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.top .wraper {
    width: 1200px;
    display: flex;
    justify-content: space-between;
}

.top .left {
    color: #555555;
}

.top .right {
    font-weight: bold;
    color: orangered;
}

.header {
    margin: 0 auto;
    width: 1200px;
    display: flex;
    justify-content: space-between;
    height: 100px;
    align-items: center;
    min-width: 1200px;
    box-sizing: border-box;
    padding: 0 10px;
}

.header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.header .searchbox {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.header .searchbox .searchinput {
    display: flex;
    height: 50px;
    font-size: 12px;
    width: 430px;
    border: #FF6402 3px solid;
    outline: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0 5px;
}

.header .searchbox .btn {
    height: 50px;
    width: 100px;
    color: #f8f8f8;
    border: none;
    background-color: #FF6402;
    outline: 0;
    font-size: 16px;
    cursor: pointer;
    margin-left: -5px;
}

.nav {
    height: 48px;
    background-color: #ff7112;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 5px;
    min-width: 1200px;
}

.nav .wraper {
    width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav .wraper li {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    height: 48px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    cursor: pointer;
}

.nav .wraper li.active {
    background-color: #FF3300;
}

.nav .wraper li a {
    color: #ffffff;
    text-decoration: none;
}

.down {
    position: absolute;
    z-index: 999;
    right: -20px;
    top: -20px;
}

.detail {
    clear: both;
    display: flex;
    flex-wrap: wrap;
    width: 1200px;
    margin: 0 auto;
    justify-content: flex-start;
    box-sizing: border-box;
    height: auto;
}

.detail .titlebar {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    background-color: #f7f7f7;
    box-sizing: border-box;
    padding: 10px;
    margin: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.detail .titlebar a {
    color: #70bbdf;
    font-size: 16px;
}


.footer_wrapper {
    display: flex;
    justify-content: center;
    background-color: #313131;
    margin-top: 50px;
    width: 100%;
    min-width: 1200px;
}


.footer a {
    color: #8f8f94;
    font-size: 14px;
}

.footer .left {
    width: 800px;
    display: flex;
    flex-direction: column;
}

.footer_nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 15px 0;
}

.footer_nav a {
    color: #f8f8f8;
}

.footer .right {
    width: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .left .c1 {
    border-top: dashed 1px #575757;
    padding: 10px 0;
    margin: 0;
}

.footer .left .c1 span, .footer .left .c1 a {
    margin-right: 15px;
}


.p_name {
    overflow: hidden;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    display: -webkit-box;
    display: box;
}