@charset "utf-8";
/* common */
@import url("common.css");

/* owl-carousel */
@import url("owl.carousel.min.css");

/* slider */
#slider {
    max-width: 1000px;
    margin: 0 auto;
}

#slider .item a {
    position: relative;
    display: block;
}

#slider .item a img {
    display: block;
    width: 100%;
    height: auto;
    transition: all .3s;
}

#slider .item a:hover img {
    opacity: .6;
}

#slider .item a p {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, .7);
    font-size: 15px;
    color: #FFF;
    line-height: 20px;
    text-align: center;
    box-sizing: border-box;
}

#slider .owl-nav > div {
    position: absolute;
    top: 50%;
    width: 36px;
    height: 37px;
    margin-top: -18px;
    background: url('../images/slider_arrow.png');
    text-indent: -9999px;
    transition: all .3s;
}

#slider .owl-nav .owl-prev {
    left: 10px;
    background-position: left top;
}

#slider .owl-nav .owl-next {
    right: 10px;
    background-position: right top;
}

#slider .owl-nav > div:hover {
    opacity: .6;
}

/* container */
#container {
    padding: 20px;
}

#container .wrap {
    max-width: 1000px;
    margin: 0 auto;
}

/* news */
#news {
    position: relative;
    height: 40px;
    margin-bottom: 50px;
    padding: 0 75px 0 110px;
    background: #393939;
    border-radius: 10px;
    overflow: hidden;
}

#news .title {
    position: absolute;
    left: 10px;
    top: 12px;
    padding-right: 25px;
    font-size: 16px;
    color: #FFF;
    line-height: 20px;
    font-weight: bold;
}

#news .title::before,
#news .title::after {
    content: "";
    position: absolute;
    display: block;
}

#news .title::before {
    right: 0;
    top: -2px;
    width: 20px;
    height: 20px;
    background: #c4c4c4;
    border-radius: 50%;
}

#news .title::after {
    right: 5px;
    top: 4px;
    border-style: solid;
    border-width: 4px 0 4px 8px;
    border-color: transparent transparent transparent #FFF;
}

#news ul {
    position: relative;
}

#news li {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#news li a {
    display: block;
    font-size: 15px;
    color: #FFF;
    line-height: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .3s;
}

#news li a:hover {
    color: #CCC;
}

#news .control {
    position: absolute;
    right: 10px;
    top: 10px;
    display: inline-flex;
}

#news .control a {
    display: block;
    width: 23px;
    height: 23px;
    background: url('../images/news_arrow.png') no-repeat;
    text-indent: -9999px;
    transition: all .3s;
}

#news .control a.prev {
    margin-right: 5px;
    background-position: left top;
}

#news .control a.next {
    background-position: right top;
}

#news .control a:hover {
    opacity: .6;
}

/* about */
#about {
    overflow: hidden;
}

#about .owl-carousel {
    float: left;
    width: 48%;
    padding: 10px;
    background: #FFF;
    box-sizing: border-box;
}

#about .owl-carousel .item a {
    display: block;
}

#about .owl-carousel .item a img {
    display: block;
    width: 100%;
    height: auto;
}

#about .owl-carousel .owl-dots {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: flex;
    padding: 10px;
}

#about .owl-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    margin-left: 10px;
    border-radius: 50%;
    background: #FFF;
}

#about .owl-carousel .owl-dots .owl-dot.active {
    background: #5a5a5a;
}

#about .description {
    float: right;
    width: 48%;
    font-size: 15px;
    color: #0f0f0f;
    line-height: 25px;
    font-size: 20px;
    font-weight: bold;
}

#about .description .title {
    font-size: 20px;
    color: #eeb60b;
    line-height: 30px;
}

#about .description .more {
    text-align: right;
    margin: 10px 0 0 0;
}

#about .description .more a {
    display: inline-block;
    width: 80px;
    height: 30px;
    background: #555;
    border: 3px solid #c9c9c9;
    border-radius: 10px;
    font-size: 15px;
    color: #FFF;
    line-height: 30px;
    text-align: center;
    transition: all .3s;
}

#about .description .more a:hover {
    background: #333;
}

/* RWD */
@media screen and (max-width: 1000px) {

    /* about */
    #about .owl-carousel,
    #about .description {
        float: none;
        width: 100%;
    }
    
    #about .owl-carousel {
        max-width: 480px;
        margin-bottom: 20px;
    }

}