* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #212121;
}

ul,
li {
    list-style: none;
}

.line1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line2 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.line3 {
    position: relative;
    line-height: 18px;
    height: 36px;
    overflow: hidden;
    word-break: break-all;
}

.line3::after {
    content: "...";
    font-weight: bold;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 0 20px 1px 45px;
    /* 涓轰簡灞曠ず鏁堟灉鏇村ソ */
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(white), color-stop(50%, white));
    background: -moz-linear-gradient(to right, rgba(255, 255, 255, 0), white 50%, white);
    background: -o-linear-gradient(to right, rgba(255, 255, 255, 0), white 50%, white);
    background: -ms-linear-gradient(to right, rgba(255, 255, 255, 0), white 50%, white);
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white 50%, white);
}

#header {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

#header .logo {
    width: 178px;
    height: 50px;
}

#header .nav {
    display: flex;
}

#header .nav>li {
    width: 112px;
    line-height: 100px;
    text-align: center;
}

#header .nav li a {
    text-decoration: none;
    color: #212121;
    font-size: 18px;
    display: block;
}

#header .nav li a:hover,
#header .nav li a.active {
    background-color: #CA1247;
    color: #fff;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

#header .tel {
    width: 203px;
    height: 30px;
}

#footer .nav {
    width: 100%;
    background-color: #CA1247;
    height: 66px;
}

#footer .nav .jz {
    display: flex;
    align-items: center;
    justify-content: space-around;
}


#footer .nav li a {
    display: block;
    line-height: 66px;
    text-decoration: none;
    color: #fff;
}

#footer .nav li a:hover {
    opacity: .8;
}

#footer .nav li a::after {
    content: "涓?;
    margin-left: 50px;
}

#footer .nav li:last-child a::after {
    content: "";
}

#footer .center {
    margin-top: 40px;
    display: flex;
    justify-content: space-around;
    padding-bottom: 35px;
}

#footer .center .left {
    display: flex;
}

#footer .center .left .address {
    width: 329px;
    margin-right: 70px;
}

#footer .center .left .about {
    margin-right: 59px;
}

#footer .center .left .tel {
    padding-top: 56px;
}

#footer .center .tit {
    font-size: 18px;
    color: #212121;
}

#footer .center .cont {
    margin-top: 24px;
    font-size: 14px;
    color: #212121;
}

#footer .center .cont ul {
    display: flex;
    height: 37px;
    align-items: center;
}

#footer .center .cont ul li {
    margin-right: 11px;
}

#footer .center .tit span {
    color: #8d8d8d;
    text-transform: uppercase;
}

#footer .center .right .ewm {
    background-color: #8d8d8d;
}

#footer .center .right .ewm img {
    width: 71px;
    height: 71px;
    vertical-align: bottom;
}

#footer .center .right p {
    font-size: 14px;
    text-align: center;
    color: #212121;
}

#footer .icp {
    line-height: 68px;
    border-top: 1px solid #E2E2E2;
    display: flex;
    justify-content: center;
}

#footer .icp p {
    color: #666666;
    font-size: 14px;
}

#footer .icp p:first-child {
    margin-right: 50px;

}


#header ul li.navitem {
    position: relative;
}

#header ul li.navitem ul.subnav {
    transition: all 0.3s ease-out 0s;
    position: absolute;
    width: 210px;
    border-top: #e0a240 3px solid;
    top: 100px;
    left: -55px;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0px, 10px, 0px);
    -moz-transform: translate3d(0px, 10px, 0px);
    -webkit-transform: translate3d(0px, 10px, 0px);
    z-index: 999;
}

#header ul li.navitem:hover ul.subnav {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
}

#header ul li.navitem a {
    transition: none ease-out .3s;
    transition-property: color, background, text-indent, opacity
}


#header ul li.navitem ul.subnav li {
    border-bottom: #E2E2E2 1px solid
}

#header ul li.navitem ul.subnav li a {
    padding: 14px 30px;
    width: 150px;
    height: 20px;
    line-height: 20px;
    display: block;
    color: #bbb9b9;
    font-size: 12px;
}


#header ul li.navitem ul.subnav li a:hover {
    background: #fff;
    color: #000;
    text-indent: inherit;
    background-color: #f5f5f5;
}

#header ul li.navitem ul.subnav {
    background: #fff;
    border: 0;
    box-shadow: 0 6px 10px rgba(0, 0, 0, .1);
}