*{
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
a{
    color: #1B1B1B;
    text-decoration: none;
}
input{
    border: none;
    outline: none;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}
.clearfix:after{content:".";display:block;visibility:hidden;clear:both;height:0;font-size:0}

body{
    background-image: url(../images/body-bg.png);
}

.w100{
    width: 100%;
}
.w80{
    width: 1200px;
    position: relative;
}
.m-auto{
    margin: 0 auto;
}
.one-slh{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.two-slh{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.three-slh{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.m-w100{
   max-width: 768px;
   margin: 0 auto; 
   display: none;
}


#nav {
    float: right;
}

#nav>ul {
    display: flex;
    padding: 0;
    width: 100%;
    justify-content: space-between;
}

#nav>ul>li {
    position: relative;
    z-index: 9999999999999;
    margin: 20px 0 0 2.5rem;
    display: flex;
    align-items: center;
}

#nav>ul>li span {
    display: inline-block;
    width: .3125rem;
    height: .3125rem;
    background: #b2b2b2;
    border-radius: 50%;
}

#nav>ul>li>a {
    display: block;
    padding: 0;
    text-transform: uppercase;
}

#nav>ul>li>a {
    font-size: 1rem;
    color: #fff;
    line-height: 40px;
    position: relative;
    transition: .6s;
    display: flex;
    align-items: center;
    border-top: none;
    border-bottom: none;
}

#nav>ul>li.on>a {
    font-weight: bold;
}

#nav>ul>li>a .h3 {
    position: relative;
    font-size: 1rem;
    padding: 0;
    z-index: 1;
}

#nav>ul>li a i {
    display: inline-block;
    width: 9px;
    height: 6px;
    background-size: contain;
    vertical-align: middle;
    margin-left: 8px;
}

#nav>ul>li .sub {
    position: absolute;
    position: absolute;
    left: 50%;
    top: 100%;
    z-index: 9999999999999;
    /* -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2); */
    -moz-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
    /* box-shadow: 0px 3px 5px #3333334d; */
    transform-origin: 0 0 0;
    transform: scaleY(0.2) translateX(-50%);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0;
    padding: 20px 0 0;
    min-width: 100%;
}

#nav>ul>li .sub:before {
    content: "";
    position: absolute;
    border-left: transparent 6px solid;
    border-right: transparent 6px solid;
    border-bottom: #fff 8px solid;
    top: 13px;
    left: 50%;
    margin-left: -6px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .05);
}

#nav>ul>li .sub .box {
    padding: 0;
    text-align: center;
    border-radius: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, .85);
    box-shadow: 0 3px 30px rgba(0, 0, 0, .08);
}

#nav>ul>li .sub a {
    padding: 0 1.5rem;
    line-height: 3.5;
    transition: .3s;
    font-size: 14px;
    letter-spacing: 1px;
    color: #636363;
    /* border-bottom: 1px dashed #eee; */
    display: block;
    white-space: nowrap;
    position: relative
}

#nav>ul>li .sub a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: #537a78;
    transition: .5s;
}

#nav>ul>li .sub a:hover {
    color: #fff;
    background: #A7250C;
}

#nav>ul>li .sub a:hover:before {
    height: 100%;
}

#nav>ul>li:hover .sub {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px) translateX(-50%);
}

#nav>ul>li.on>a,
#nav>ul>li:hover>a,
#header.xg #nav>ul>li.on>a,
#header.xg #nav>ul>li:hover>a {
    color: #fff;
}

#nav>ul>li .h3:after {
    content: "";
    display: block;
    width: 100%;
    height: 7px;
    position: absolute;
    left: 50%;
    margin-left: -50%;
    top: -3.5px;
    transition: .5s;
    border-radius: 3.5px;
    z-index: -1;
    display: none;
}

#nav>ul>li h3:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -3px;
    border-left: transparent 3px solid;
    border-right: transparent 3px solid;
    border-bottom: #00a271 4px solid;
    bottom: 2px;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
    display: none;
}

#nav>ul>li:hover h3:after,
#nav>ul>li.on h3:after {
    transform: translateY(0);
}

#nav>ul>li:hover h3:before,
#nav>ul>li.on h3:before {
    opacity: 1;
    visibility: visible
}




footer {
    height: 287px;
    background-image: url(../images/footer-bg.png);
    background-size: 100% 100%;
    overflow: hidden;
    padding-top: 64px;
}

footer>div>div {
    display: inline-block;
    vertical-align: middle;
    margin-right: 55px;
}

footer>div>div p {
    margin-bottom: 25px;
    font-size: 14px;
    color: #F3CBC1;
}

footer>div:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
    color: #B3807B;
    text-align: center;
    margin-top: 36px;
}

.list_box_13 {
    margin: 0 -15px;
    padding: 0 20px;
    margin-bottom: 66px;
}

.list_box_13 li {
    display: inline-block;
    width: 56px;
    text-align: center;
    position: relative;
    margin-right: 9px;
}

.list_box_13 li img {
    transition: .5s;
    cursor: pointer;
}

.list_box_13 li .ewm {
    position: absolute;
    top: 99%;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
    padding: .5rem;
    width: 110px;
    background: rgba(171, 46, 54, .95);
    z-index: 10;
    border-radius: .625rem;
    transform: translateX(-50%) translateY(1.25rem);
    left: 50%;
}

.list_box_13 li .ewm:before {
    content: "";
    position: absolute;
    border-left: transparent 6px solid;
    border-right: transparent 6px solid;
    border-bottom: rgba(171, 46, 54, .95) 8px solid;
    top: -8px;
    left: 50%;
    margin-left: -6px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .05);
}

.list_box_13 li .ewm img {
    width: 100%
}

.list_box_13 li:hover .ewm {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(-50%);
}

.link-box {
    width: 246px;
    height: 48px;
    background-image: url(../images/select-bg.png);
    background-size: 100% 100%;
    font-size: 16px;
    color: #F3CBC1;
    text-align: center;
    line-height: 48px;
    cursor: pointer;
    position: relative;
    margin: 0 auto;
}

.link-box>ul {
    text-align: center;
    border-radius: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, .85);
    box-shadow: 0 3px 30px rgba(0, 0, 0, .08);
    position: absolute;
    left: 50%;
    top: 100%;
    z-index: 999;
    -moz-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
    transform-origin: 0 0 0;
    transform: translateX(-50%);
    transition: all 0.3s ease 0s;
    opacity: 0;
    padding: 5px;
    font-size: 14px;
    width: 240px;
    height: 100px;
    overflow-y: scroll;

}

.link-box>ul::-webkit-scrollbar {
    width: 4px;
}

.link-box>ul::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
}

.link-box>ul::-webkit-scrollbar-track {
    border-radius: 0;
    background: rgba(0, 0, 0, 0.1);
}
.link-box:hover ul {
    opacity: 1;
}


.ewm-list {
    /* margin-top: 50px; */
}
.ewm-list li{
    display: inline-block;
    text-align: center;
    margin-right: 15px;
}
.ewm-list li P{
    margin-top: 8px;
}
.ewm-list li:last-child{
    margin-right: 0;
}

@media(max-width: 768px){
    .ewm-list{
        margin-top: 10px;
    }
    .ewm-list p{
        color: #F3CBC1;
        font-size: 13px;
    }
}




















