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

/* banner */
#banner {
    height: 189px;
    background-position: center center;
    background-repeat: no-repeat;
    text-indent: -9999px;
}

body.about #banner {
    background-image: url('../images/upload/banner_about.jpg');
}

body.product #banner {
    background-image: url('../images/upload/banner_product.jpg');
}

body.news #banner,
body.news_content #banner {
    background-image: url('../images/upload/banner_news.jpg');
}

body.contact #banner {
    background-image: url('../images/upload/banner_contact.jpg');
}

/* container */
#container {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 0;
    overflow: hidden;
}

#container > .left {
    width: 220px;
}

#container > .left .menu > li {
    margin-bottom: 10px;
}

#container > .left .menu > li > a {
    font-size: 15px;
    color: #666;
    line-height: 20px;
    transition: all .3s;
}

#container > .left .menu > li > a:hover {
    color: #c50b12;
}

#container > .left .menu .sub-menu {
    margin: 5px 0 0 15px;
}

#container > .left .menu .sub-menu li a {
    font-size: 13px;
    color: #000000;
    line-height: 28px;
    transition: all .3s;
}

#container > .left .menu .sub-menu li a:hover {
    color: #CCC;
}

#container > .right {
    float: left;
    width: 780px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

/* mobile-list */
.mobile-list {
    display: none;
}

.mobile-list form {
    position: relative;
}

.mobile-list form::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 12px;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    border-color: #333 transparent transparent transparent;
}

.mobile-list form select {
    display: block;
    width: 100%;
    background: #FFF;
    padding: 0 5px;
    font-size: 15px;
    color: #333;
    line-height: 30px;
    box-sizing: border-box;
}

.mobile-list form select option.sub-title {
    background-color: #CCC;
}

/* breadcrumb */
#breadcrumb {
    font-size: 12px;
    letter-spacing: .25px;
}

#breadcrumb a {
    color: #000000;;
}

#breadcrumb a:hover {
    text-decoration: underline;
}

#breadcrumb span {
    text-decoration: underline;
}

/* main-title */
#main-title {
    font-size: 20px;
    color: #000000;;
    line-height: 65px;
}

/* imagery */
#imagery {
    margin-bottom: 20px;
}

#imagery img {
    display: block;
    width: 100%;
    height: auto;
}

/* page */
#page {
    display: flex;
    justify-content: center;
    margin: 20px auto 0 auto;
}

#page a {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 5px;
    background: #FFF;
    text-indent: -9999px;
}

#page a::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 11px;
    display: block;
    border-style: solid;
    border-color: transparent;
    transition: all .3s;
}

#page a.prev::before {
    border-width: 4px 8px 4px 0;
    border-right-color: #a8a8a8;
}

#page a.next::before {
    border-width: 4px 0 4px 8px;
    border-left-color: #a8a8a8;
}

#page a:hover {
    background: #999;
}

#page a.prev:hover::before {
    border-right-color: #FFF;
}

#page a.next:hover::before {
    border-left-color: #FFF;
}

#page .enter-page {
    width: 30px;
    height: 30px;
    border: 1px solid #b4b4b4;
    font-size: 15px;
    color: #333;
    line-height: 28px;
    text-align: center;
    box-sizing: border-box;
}

#page span {
    display: block;
    margin: 0 10px;
    font-size: 15px;
    color: #9c9c9c;
    line-height: 30px;
}

#page .inquiry {
    width: 50px;
    background: #FFF;
    border: 1px solid #b4b4b4;
    font-size: 15px;
    color: #9c9c9c;
    line-height: 29px;
    text-align: center;
    text-indent: 0;
}

#page .inquiry:hover {
    color: #FFF;
}

/* editor */
#editor {
    font-size: 15px;
    line-height: 30px;
}

#editor img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

#editor a {
    color: #FFF;
}

#editor a:hover {
    text-decoration: underline;
}

/* common-buttons */
.common-buttons {
    margin-top: 20px;
}

.common-buttons a {
    display: inline-block;
    width: 100px;
    height: 25px;
    background: #555;
    border: 2px solid #d6d6d6;
    border-radius: 10px;
    font-size: 13px;
    color: #FFF;
    line-height: 25px;
    text-align: center;
    transition: all .3s;
}

.common-buttons a:hover {
    background-color: #666;
    border-color: #999;
}

/* fill-form */
.fill-form .note {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #757575;
    font-size: 15px;
    color: #000000;
    line-height: 25px;
}

.fill-form li {
    position: relative;
    margin-bottom: 20px;
    padding-left: 75px;
}

.fill-form li span {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 70px;
    font-size: 15px;
    color: #000000;
    line-height: 26px;
    text-align: right;
}

.fill-form li input {
    display: block;
    width: 100%;
    max-width: 200px;
    height: 26px;
    padding: 0 10px;
    border: 1px solid #c8c8c8;
    font-size: 13px;
    color: #999;
    line-height: 26px;
    box-sizing: border-box;
}

.fill-form li textarea {
    display: block;
    width: 100%;
    max-width: 420px;
    height: 100px;
    padding: 10px;
    border: 1px solid #c8c8c8;
    font-size: 13px;
    color: #999;
    line-height: 26px;
    box-sizing: border-box;
}

.fill-form li.verify input {
    width: 100px;
}

.fill-form li.verify #code {
    position: absolute;
    left: 180px;
    top: 0;
}

.fill-form li.verify .refresh {
    position: absolute;
    left: 265px;
    top: 5px;
    font-size: 13px;
    color: #FFF;
    transition: all .3s;
}

.fill-form li.verify.refresh:hover {
    color: #CCC;
}

.fill-form .buttons {
    text-align: center;
}

.fill-form .buttons button {
    display: inline-block;
    width: 60px;
    background: #555;
    border: 2px solid #d6d6d6;
    border-radius: 10px;
    font-size: 13px;
    color: #FFF;
    line-height: 30px;
    transition: all .3s;
}

.fill-form .buttons button:hover {
    background: #666;
    border-color: #999;
}

/* product-list */
#product-list {
    display: flex;
    flex-wrap: wrap;
}

#product-list dl {
    width: 32.33%;
    margin: 0 1.5% 1.5% 0;
}

#product-list dl:nth-child(3n) {
    margin-right: 0;
}

#product-list dt {
    border: 1px solid #c1c1c1;
    background: #FFF;
}

#product-list dt a {
    position: relative;
    display: block;
}

#product-list dt a::before,
#product-list dt a::after {
    position: absolute;
    display: block;
    opacity: 0;
    transition: all .3s;
}

#product-list dt a::before {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

#product-list dt a::after {
    content: "+";
    left: 50%;
    top: 50%;
    width: 70px;
    height: 70px;
    margin: -35px 0 0 -35px;
    background: rgba(255, 255, 255, .3);
    border: 2px solid #FFF;
    border-radius: 50%;
    font-size: 15px;
    color: #FFF;
    line-height: 66px;
    text-align: center;
    box-sizing: border-box;
    z-index: 2;
}

#product-list dt a img {
    display: block;
    width: 100%;
    height: auto;
}

#product-list dt a:hover::before,
#product-list dt a:hover::after {
    opacity: 1;
}

#product-list dd {
    text-align: center;
}

#product-list dd a {
    font-size: 13px;
    color: #000000;
    line-height: 25px;
    transition: all .3s;
}

#product-list dd a:hover {
    color: #CCC;
}

/* item-list */
#item-list {
    padding-right: 20px;
}

#item-list dl {
    position: relative;
    display: flex;
    padding: 10px;
    background: #FFF;
    border-bottom: 1px solid #d8d8d8;
}

#item-list dt {
    position: relative;
    margin-right: 10px;
    width: 252px;
    overflow: hidden;
    border: 1px solid #cbcaca;
}

#item-list dt a {
    position: relative;
    display: block;
}

#item-list dt a::before,
#item-list dt a::after {
    position: absolute;
    display: block;
    opacity: 0;
    transition: all .3s;
}

#item-list dt a::before {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

#item-list dt a::after {
    content: "+";
    left: 50%;
    top: 50%;
    width: 70px;
    height: 70px;
    margin: -35px 0 0 -35px;
    background: rgba(255, 255, 255, .3);
    border: 2px solid #FFF;
    border-radius: 50%;
    font-size: 15px;
    color: #FFF;
    line-height: 66px;
    text-align: center;
    box-sizing: border-box;
    z-index: 2;
}

#item-list dt a:hover::before,
#item-list dt a:hover::after {
    opacity: 1;
}

#item-list dt a img {
    width: 100%;
    height: auto;
}

#item-list dt input.inquiry {
    position: absolute;
    left: 10px;
    top: 10px;
    display: block;
    width: 15px;
    height: 15px;
    background: #FFF;
    z-index: 3;
}

#item-list dd {
    font-size: 13px;
    color: #4e4e4e;
    line-height: 25px;
}

#item-list dd span {
    color: #c50b12;
}

/* inquiry-list */
.inquiry-list {
    width: 100%;
    margin-bottom: 20px;
    border-left: 1px solid #999;
    border-top: 1px solid #999;
}

.inquiry-list td {
    background: #FFF;
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
    font-size: 13px;
    color: #333;
    line-height: 30px;
    text-align: center;
}

.inquiry-list thead td {
    font-size: 13px;
    color: #FFF;
    line-height: 30px;
    text-align: center;
    background: #666;
    
}

.inquiry-list td .quanlity {
    width: 40px;
    text-align: center;
}

.inquiry-list td .del {
    width: 40px;
    height: 22px;
    font-size: 12px;
    line-height: 20px;
    background: #333;
    color: #FFF;
    border: 1px solid #999;
    cursor: pointer;
}

/* search-result */
#search-result {
    padding: 10% 0;
    font-size: 15px;
    color: #FFF;
    line-height: 22px;
    letter-spacing: 1px;
    text-align: center;
}

#search-result span {
    color: #FF0000;
}

/* product-info */
#product-info {
    padding: 10px;
    background: #FFF;
}

#product-info .img-show {
    position: relative;
    display: none;
    margin-bottom: 20px;
}

#product-info .img-show img {
    border: 1px solid #cbcaca;
    width: 100%;
    max-width: 252px;
    height: auto;
}

#product-info .img-show ul {
    overflow: hidden;
}

#product-info .img-show li {
    float: left;
    width: 80px;
}

#product-info .img-show li img {
    display: block;
    width: 100%;
    height: auto;
    opacity: .5;
    transition: all .3s;
}

#product-info .img-show li:hover img {
    opacity: 1;
}

#product-info .info {
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 25px;
    color: #4e4e4e;
}

#product-info .info p span {
    color: #c50b12;
}

#product-info .content {
    padding-top: 10px;
    border-top: 1px solid #CCC;
    font-size: 15px;
    color: #4e4e4e;
    line-height: 25px;
}

/* news-list */
#news-list li {
    position: relative;
    padding: 10px 0 10px 95px;
    border-bottom: 1px dotted #CCCCCC;
    font-size: 13px;
    color: #FFF;
    line-height: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#news-list li .date {
    position: absolute;
    left: 0;
    top: 50%;
    display: block;
    width: 80px;
    margin-top: -6.5px;
    border-right: 1px solid #878787;
    color: #666;
    line-height: 12px;
}

#news-list li a {
    font-size: 13px;
    color: #000000;
    transition: all .3s;
}

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

/* news-info */
#news-info .title {
    font-size: 15px;
    color: #000000;
    line-height: 30px;
    padding-top: 10px;
    padding-right: 36px;
    font-weight: bold;
    margin: 0 0 10px 0;
}

/* contact */
#contact .info {
    margin-bottom: 20px;
    font-size: 15px;
    color: #000000;
    line-height: 40px;
}

#contact .info .fb {
    display: inline-block;
    text-indent: -99999px;
    background: url('../images/fb.png');
    width: 25px;
    height: 25px;
    background-size: 25px auto;
    vertical-align: -4px;
    margin: 0 0 0 10px;
}

#contact .info .line {
    display: inline-block;
    text-indent: -99999px;
    background: url('../images/line.png');
    width: 25px;
    height: 25px;
    background-size: 25px auto;
    vertical-align: -4px;
    margin: 0 0 0 10px;
}

#contact .map {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 52.65%;
}

#contact .map iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/* RWD */
@media screen and (max-width: 1000px) {
    
    /* container */
    #container {
        display: block;
        padding-top: 10px;
    }

    #container > .left,
    #container > .right {
        width: 100%;
    }

    #container > .left {
        margin-bottom: 20px;
    }

    #container > .left .menu {
        display: none;
    }

    #container > .right {
        padding: 0 10px;
    }

    /* mobile-list */
    .mobile-list {
        display: block;
    }

}

@media screen and (max-width: 768px) {
    
    /* banner */
    #banner {
        display: none;
    }

}

@media screen and (max-width: 640px) {
    
    /* product-list */
    #product-list dl {
        width: 49%;
        margin: 0 2% 2% 0;
    }

    #product-list dl:nth-child(3n) {
        margin-right: 2%;
    }

    #product-list dl:nth-child(2n) {
        margin-right: 0;
    }

}

@media screen and (max-width: 480px) {
    
    /* fill-form */
    .fill-form li {
        padding: 0;
    }

    .fill-form li span {
        position: static;
        margin-bottom: 5px;
        text-align: left;
    }

    .fill-form li input,
    .fill-form li textarea {
        max-width: none;
    }

    .fill-form li.verify #code {
        left: 105px;
        top: 31px;
    }

    .fill-form li.verify .refresh {
        left: 190px;
        top: 37px;
    }

    /* product-list */
    #product-list dl {
        width: 100%;
        margin: 0 auto 20px auto !important;
    }

    /* item-list */
    #item-list dl {
        display: block;
    }

    #item-list dt {
        width: 100%;
        margin-bottom: 10px;
    }

}



