@charset "utf-8";
/* 样式重置 */
ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none
}

/* 添加bootstrap5等分 */
/* define bootstrap 5 columns */
.col-xs-1-5, .col-sm-1-5, .col-md-1-5, .col-lg-1-5, .col-xs-2-5, .col-sm-2-5, .col-md-2-5, .col-lg-2-5, .col-xs-3-5, .col-sm-3-5, .col-md-3-5, .col-lg-3-5, .col-xs-4-5, .col-sm-4-5, .col-md-4-5, .col-lg-4-5 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.col-xs-1-5 {
    width: 20%;
    float: left;
}

.col-xs-4-5 {
    width: 80%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-1-5 {
        width: 20%;
        float: left;
    }

    .col-sm-4-5 {
        width: 80%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-1-5 {
        width: 20%;
        float: left;
    }

    .col-md-4-5 {
        width: 80%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-1-5 {
        width: 20%;
        float: left;
    }

    .col-lg-4-5 {
        width: 80%;
        float: left;
    }
}

/* 根据项目修改bootstrap基础默认样式 */
.spa {
    letter-spacing: 7px;
}

.navbar {
    margin-bottom: 0;
    border: none;
    background: transparent;
}

.navbar-default .navbar-nav > li > a {
    color: #333;
    font-size: 14px;
    font-weight: bold;
}

.navbar-default .navbar-nav > li > a:hover {
    background-color: #b2964c;
    color: #fff;
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover {
    color: #b2964c;
    background: transparent;
}

.navbar-default .navbar-nav > .active > a .glyphicon {
    color: #b2964c;
}

.navbar-nav .open .dropdown-menu {
    background: #b2964c;
    border: none;
    padding: 0;
}

.navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #fff;
}

.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus, .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
    color: #b2964c;
    background-color: #f3efe5;
}

.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover {
    background-color: #b2964c;
    color: #fff;
}

.caret {
    background: url(../images/icon-caret.png) no-repeat;
    width: 10px;
    height: 10px;
    border: none;
    margin-left: 4px;
}

.nav .open > a .caret, .navbar-nav > li.active > a .caret {
    background-position: 0 -30px;
}

/*.s-pc-site .navbar-default {*/
/*background-color:transparent;*/
/*border:none;*/
/*margin-bottom:0;*/
/*}*/

/* .s-web-site{padding-top:50px;} */

.navbar-default .navbar-toggle {
    border-color: #b2964c;
}

.navbar-default .navbar-toggle .icon-bar {
    background: #b2964c;
}

.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
    background: #b2964c;
}

.navbar-default .navbar-toggle:focus .icon-bar, .navbar-default .navbar-toggle:hover .icon-bar {
    background: #fff;
}

.carousel-indicators li {
    background-color: #666;
    border: none;
    width: 12px;
    height: 12px;
    margin: 0 5px;
}

.carousel-indicators .active {
    background-color: #b2964c;
    border-color: #b2964c;
    margin: 0 5px;
}

.carousel-indicators {
    bottom: 0;
}

/* 分页样式重置 */
.pagination > li > a, .pagination > li > span {
    color: #666;
    border-color: #ddd;
}

.pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover {
    color: #aa8b39;
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
    background-color: #aa8b39;
    border-color: #aa8b39;
}

/* 列表样式重置 */
a.list-group-item, button.list-group-item {
    color: #666;
}

.list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover {
    background-color: #aa8b39;
    border-color: #aa8b39;
    color: #fff;
}

.list-group-item:first-child {
    border-radius: 0;
}

.list-group-item:last-child {
    border-radius: 0;
}

/* 媒体查询, 宽度大于768 */
@media (min-width: 768px) {
    .navbar-default .navbar-nav > li > a {
        font-size: 14px;
        padding: 15px 5px;
    }

    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        padding: 8px 15px;
    }

    .navbar-nav {
        width: 100%;
    }

    .navbar-nav > li {
        width: 14%;
        text-align: center;
    }

    .s-head-nav .container-fluid {
        padding: 0;
    }

    .navbar-nav .dropdown-menu {
        min-width: 100%;
        border: none;
        border-radius: 0;
    }

    .carousel-indicators {
        bottom: 10px;
    }

    .dropdown-menu > li > a {
        line-height: 30px;
    }
}

@media (min-width: 992px) {
    .container-fluid {
        padding: 0;
    }

    .navbar-nav > li {
        margin: 0;
    }

    .navbar-default .navbar-nav > li > a {
        font-size: 16px;
        padding: 15px 5px;
    }
}

@media (min-width: 1200px) {
    .container-fluid {
        padding: 0 60px;
    }

    .navbar-nav > li {
        width: 11.42%;
        /* margin: 0 1.43%; */
    }
}

/* 样式重置 */
body {
    color: #666;
    font-family: Arial, "微软雅黑";
}

a {
    color: #666;
}

a:focus, a:hover {
    color: #b2964c;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}

/* 公共的类名 */
.fl {
    float: left;
}

.fr {
    float: right;
}

.s-ta-r {
    text-align: right;
}

.s-ta-c {
    text-align: center;
}

.s-dis-ib {
    display: inline-block;
}

.s-dis-b {
    display: block;
}

.s-dis-i {
    display: inline;
}

.s-dis-n {
    display: none;
}

/* 转换英文字体大小 */
.s-tt-up {
    text-transform: uppercase;
}

.s-w-100a {
    width: 100%;
}

.s-w-80a {
    width: 80%;
}

.s-h-100a {
    height: 100%;
}

/* 背景色 */
.s-bg-ed {
    background: #ededed;
}

/* 超出... */
.s-line-1 {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.s-line-3 {
    -webkit-line-clamp: 3;
}

.s-line-4 {
    -webkit-line-clamp: 4;
}

.s-mb-10 {
    margin-bottom: 10px;
}

.s-mb-20 {
    margin-bottom: 10px;
}

.s-mb-30 {
    margin-bottom: 30px;
}

.s-mb-40 {
    margin-bottom: 40px;
}

.s-mb-50 {
    margin-bottom: 50px;
}

.s-icon {
    display: inline-block;
    vertical-align: middle;
    height: 20px;
    width: 20px;
}

.s-icon-tel {
    background: url("../images/icon-tel.png") no-repeat center center;
    margin-right: 3px;
    margin-top: -2px;
    background-size: 20px;
}

.s-icon-more {
    background: url("../images/icon-more.png") no-repeat 0 1px;
    width: 25px;
    margin-left: 10px;
}

.s-icon-play {
    background: url(../images/icon-video-play.png) no-repeat;
    height: 40px;
    width: 40px;
}

.s-icon-close {
    background: url(../images/icon-close.png) no-repeat;
    height: 40px;
    width: 40px;
    margin: 10px 10px 0 0;
}

.s-icon-close:hover {
    background-position-y: -40px;
}

/* 公共头部样式 */
.s-head .s-head-top {
    background: #333;
    color: #999;
    line-height: 40px;
}

.s-head .s-other-font {
    color: #aa8b39;
    Font-family: Georgia, "SimSun";
    font-size: 20px;
    line-height: 39px;
}

.s-head-logo {
    background: url(../images/bg-logo.png) no-repeat center;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    text-align: center;
}

.s-head-logo .s-img {
    height: 60px;
    margin: 40px 0;
}

.s-head .s-head-logo-box {
    padding: 15% 0;
}

/* 导航 */
.s-head-nav { /*display:none;*/
    right: 14px;
    position: absolute;
    top: 65px;
}

/*.s-web-site .s-head-nav-pc {*/
/*display:none;*/
/*}*/

/*.s-web-site .s-head-nav {*/
/*display:block;*/
/*}*/

/*.s-head-nav .container {*/
/*padding:0;*/
/*}*/

.s-head-nav .glyphicon, .s-head-nav-pc .glyphicon {
    padding-left: 5px;
    color: #666666;
}

.s-head-nav-pc .glyphicon {
    font-size: 12px;
}

.s-head-nav-pc .dropdown:hover .dropdown-menu {
    display: block;
    background: rgba(170, 139, 57, .9);
    border: none;
    padding: 0;
}

.s-head-nav-pc .dropdown:hover .dropdown-toggle {
    background-color: #b2964c;
    color: #fff;
}

.s-head-nav-pc .active.dropdown:hover .dropdown-toggle {
    background-color: #b2964c;
    color: #fff;
}

.s-head-nav-pc .dropdown:hover .glyphicon {
    color: #fff;
}

.s-head-nav-pc .dropdown .dropdown-menu > li > a {
    color: #fff;
    font-size: 12px;
}

.s-head-nav-pc .dropdown .dropdown-menu > li > a:hover {
    color: #b2964c;
    background-color: #f3efe5;
}

/* 优化banner图 */
.s-head-banner {
    background: #fafafa;
}

.s-head-banner .carousel-inner {
    height: 440px;
}

.s-head-banner .carousel-inner a {
    display: block;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 100%;
}

.s-head-banner .carousel-inner .item {
    height: 100%;
}

/* 主页主体样式 */
.s-body-area {
    margin-top: 30px;
}

.s-body-common-title {
    text-align: center;
    font-size: 26px;
    color: #aa8b39;
    background: url(../images/icon-common-title.png) no-repeat center top;
    padding-top: 30px;
    font-weight: bold;
    margin-bottom: 30px;
    margin-top: 20px;
}

/* 文本列表样式一 */
.s-body-text-list-one {
    text-align: center;
}

.s-body-text-list-one .s-link {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 14px;
    position: relative;
    margin: 0 15px 0 0;
}

.s-body-text-list-one .s-link:nth-last-child(1) {
    margin-right: 0;
}

.s-body-text-list-one .s-link::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 6px;
    background: url(../images/icon-caret-y.png) no-repeat center top;
    left: 0;
    bottom: -6px;
    display: none;
}

.s-body-text-list-one .s-link.active {
    background: #aa8b39;
    color: #fff;
}

.s-body-text-list-one .s-link.active::after {
    display: block;
}

/* 图文列表样式一 */
.s-body-image-text-list-one .s-image-text-item {
    padding: 0;
}

.s-body-image-text-list-one .s-image-text-item .s-link {
    display: block;
    padding: 20px 20px 13px;
    transition: all .3s linear;
}

.s-body-image-text-list-one .s-image-text-item .s-img-box {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 100%;
    overflow: hidden;
    background: #f1f1f1;
}

.s-body-image-text-list-one .s-image-text-item .s-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .3s linear;
}

.s-body-image-text-list-one .s-image-text-item .s-name {
    font-size: 14px;
    color: #333;
    font-weight: bold;
    margin: 15px 0 3px;
    height: 36px;
    line-height: 18px;
}

.s-body-image-text-list-one .s-image-text-item .s-tip {
    color: #999;
    height: 20px;
}

.s-body-image-text-list-one .s-image-text-item .s-price {
    color: #aa8b39;
    font-size: 18px;
    font-family: "微软雅黑";
}

.s-body-image-text-list-one .s-image-text-item .s-price  span{
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-left: 5px;
}

.s-body-image-text-list-one .s-image-text-item .s-link:hover {
    background: #fafafa;
}

.s-body-image-text-list-one .s-image-text-item .s-link:hover .s-img {
    transform: scale(1.1);
}

.s-body-image-text-list-one .s-image-text-item .s-link:hover .s-name, .s-body-image-text-list-one .s-image-text-item .s-link:focus .s-name {
    color: #aa8b39;
}

/* 更多样式 */
.s-show-more-one {
    margin: 30px 0 50px;
    display: inline-block;
    padding: 6px 36px;
    border-radius: 16px;
    border: 1px solid #dadada;
    transition: all .3s linear;
}

.s-show-more-one:hover {
    background: #aa8b39;
    color: #ffffff;
    border-color: #aa8b39;
}

.s-show-more-two:hover .s-icon-more {
    background-position-y: -40px;
}

/* 独家代理样式 */
.s-body-agency {
    padding: 20px 0;
}
.s-body-agency-tip{
    text-align: center;
    padding: 0 190px;
}

.s-body-agency-item {
    margin-bottom: 20px;
}

.s-body-agency-item .s-link {
    display: block;
    position: relative;
}
.s-body-agency-item .s-link>.s-top-box{
    position: relative;
}

.s-body-agency-item .s-link-text {
    position: absolute;
    left: 20px;
    bottom: 25px;
}

.s-body-agency-item .s-image-text-link:hover {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.s-body-agency-item-text{
    background-color: #fff;
    padding: 0 20px 30px;
    line-height: 26px;
}

/* 公共hover样式 */
.s-image-text-link .s-img-box {
    min-height: 74px;
    background: #ffffff;
    overflow: hidden;
}

.s-image-text-link .s-img-box .s-img {
    transition: all .3s linear;
    width: 100%;
}

.s-image-text-link:hover .s-img-box .s-box {
    transform: scale(1.05);
}

/* 公共hover样式2 */
.s-image-text-link2 .s-img-box {
    overflow: hidden;
    float: left;
    margin-right: 20px; /* padding:0 10px; */
    height: 100px;
    width: 150px;
}

.s-image-text-link2 .s-img-box .s-img {
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
}

.s-image-text-link2 .s-img-box .s-box {
    position: relative;
    transition: all .3s linear;
    height: 100%;
    width: 100%;
    background: #f1f1f1;
}

.s-image-text-link2:hover .s-img-box .s-box {
    transform: scale(1.05);
}

/* 图片居中样式 */
.s-imgbox-table {
    display: table;
}

.s-imgbox-table .s-cell {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

/* 红酒沙龙 红酒视频 */
.s-body-wine {
    padding: 30px 0;
}

.s-body-wine-title {
    margin-bottom: 25px;
}

.s-body-wine-title .s-body-common-title {
    margin-bottom: 0;
    margin-right: 65px;
}

.s-body-wine-title .s-body-text-list-one {
    margin-top: 50px;
}

.s-body-wine-title .s-body-text-list-one .s-link {
    float: left;
    cursor: pointer;
}

.s-show-more-two {
    margin-top: 60px;
    color: #999;
}

.s-show-more-two:hover {
    color: #aa8b39;
}

.s-body-news-item {
    margin-bottom: 30px;
    overflow: hidden;
}

.s-body-news-item .s-title {
    color: #333;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.s-body-news-item .s-time {
    float: right;
    font-size: 14px;
    background: #ccc;
    color: #fff;
    padding: 0 6px;
    border-radius: 3px;
    line-height: 18px;
    font-weight: normal;
    margin-left: 20px;
}

.s-body-news-item .s-text {
    color: #666;
    margin-bottom: 0;
    font-size: 12px;
    line-height: 24px;
    height: 72px;
}

.s-body-news-item .s-link:hover .s-title {
    color: #aa8b39;
}

.s-body-video-link {
    display: block;
    padding: 20px 20px 30px;
    background: #f5f5f5;
    position: relative;
}

.s-body-video-link > div {
    padding: 0;
}

.s-body-video-link .s-link-box {
    height: 300px;
}

.s-body-video-link .s-play {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin-bottom: 0;
    background: rgba(0, 0, 0, .6);
    transition: all .3s linear;
}

.s-body-video-link .s-icon-play {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
}

.s-body-video-link:hover .s-play {
    background: rgba(0, 0, 0, .5);
}

.s-body-video-link .s-title {
    line-height: 36px;
    color: #333;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 16px;
}

.s-body-video-link:hover .s-title {
    color: #aa8b39;
}

.s-body-video-link .s-text {
    line-height: 24px;
    color: #666;
    font-size: 12px;
}

/* 自动区中图片 */
.s-autocenter-imgbox {
    position: relative;
    overflow: hidden;
    background: #f1f1f1;
}

.s-autocenter-imgbox .s-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* 招商下载链接 */
.s-body-other-item {
    border: 1px solid #e6e6e6;
    background-color: #fafafa;
    padding: 0 40px;
    margin-top: 60px;
    position: relative;
    transition: all .3s linear;
}

.s-body-other-item:hover {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.s-body-other-item .s-link {
    padding: 20px 0;
    background: #fafafa url(../images/bg-other.png) no-repeat right center;
}

.s-body-other-item .s-link.s-bg1 {
    background-image: url(../images/bg-other1.png);
}

.s-body-other-item .s-img-box {
    width: 110px;
    height: 110px;
    position: relative;
    border-radius: 55px;
    overflow: hidden;
    margin-right: 30px;
}

.s-body-other-item.on::after {
    content: "";
    position: absolute;
    top: 0;
    right: 20px;
    width: 35px;
    height: 72px;
    background: url(../images/icon-hot.png) no-repeat;
}

.s-body-other-item .s-text {
    margin-top: 20px;
}

.s-body-other-item .s-title {
    font-size: 26px;
    color: #333;
    margin-bottom: 15px;
}

.s-body-other-item .s-link:hover .s-title {
    color: #aa8b39;
}

.s-body-other-item .s-tip {
    font-size: 18px;
    color: #ccc;
    font-style: italic;
    text-transform: uppercase;
}
.s-body-other-item-new{
    position: relative;
    line-height: 26px;
}
.s-body-other-item-new .s-show-more-two{
    margin: 0;
    position: absolute;
    right: 20px;
    bottom: 8px;
}

/* 关于我们 */
.s-body-aboutus {
    margin-top: 30px;
    padding: 20px 0 50px;
    background: url("../images/bg-big.jpg") no-repeat center top;

    background-size: auto 100%;
}

.s-body-aboutus-img {
    width: 27.334%;
}

.s-body-aboutus-text {
    width: 70%;
    line-height: 24px;
    margin-top: 3px;
}

.s-body-aboutus-text .s-aboutus {
    margin-bottom: 20px;
    text-align: justify;
}
/* 友情链接 */
.s-body-links{
    background-color: #ededed;
    padding: 40px 0;
    text-align: center;
}
.s-body-links .s-title{
    color:#aa8b39;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 15px;
    font-weight: bold;
}
.s-body-links .s-box-main a{
    margin: 0 10px;
}

/* 底部 */
/* 公司位置 */
.s-foot-map {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.s-foot-map .s-img {
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* 底部信息 */
.s-foot-info {
    background: #333333;
    color: #9a9a9a;
    line-height: 24px;
    padding: 60px 0 40px;
}

.s-foot-info-main, .s-foot-info-code {
    margin-bottom: 10px;
}

.s-foot-info-main .s-img-box {
    width: 135px;
    height: 128px;
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid #484848;
    background: url("../images/icon-foot-logo.png") no-repeat left center;
    background-size: 120px;
    overflow: hidden;
}

.s-foot-info-main .s-title {
    font-family: serif;
    line-height: 1;
    margin-bottom: 10px;
}

.s-foot-info-main .s-title img {

}

.s-foot-info-code .s-item .s-box {
    padding: 10px;
    background: #fff;
    transition: all .3s linear;
}

.s-foot-info-code .s-item .s-img {
    width: 100%;
}

.s-foot-info-code .s-item .s-text {
    text-align: center;
    line-height: 30px;
}

.s-foot-info-code .s-item:hover .s-box {
    -webkit-box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    -moz-box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* 版权信息 */
.s-foot-copyright {
    padding: 10px 0;
    background: #2a2a2a;
    color: #828282;
}

/* 自定义属性适配小屏 */
@media (max-width: 767px) {
    .s-body-agency-item .s-link-text {
        left: 10px;
        bottom: 10px;
    }
}

/* 产区主页 */
.s-icon-site-title {
    background: url("../images/icon-site-title.png") no-repeat;
    height: 36px;
    width: 26px;
}

.s-prod-site-item {
    margin-top: 40px;
}

.s-prod-site-item .s-title {
    font-weight: bold;
    color: #aa8b39;
    line-height: 36px; /* padding:0; */
}

.s-prod-site-item .s-more {
    font-size: 14px;
    color: #999;
    font-weight: normal;
}

.s-prod-site-item .s-more .glyphicon {
    font-size: 12px;
    transform: scale(.8);
}

.s-prod-site-item .s-more .s-margin {
    margin-right: -6px;
}

.s-prod-site-item .s-more:hover {

    color: #aa8b39;
}

.s-prod-site-item .s-main {
    border-top: 1px solid #eaeaea;
    border-left: 1px solid #eaeaea;
}

.s-prod-site-item .s-info {
    border-right: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    padding: 20px 15px;
    background-size: 100%;
    background-color: #f5f5f5;
    background-position: center bottom;
    background-repeat: no-repeat;
    height: 684px;
}

.s-prod-site-item .s-info .s-tip {
    text-align: center;
    background-color: #aa8b39;
    color: #fff;
    padding: 5px 0;
    margin-bottom: 20px;
}

.s-prod-site-item .s-info .s-tip .s-tel {
    Font-family: Georgia, "SimSun";
    font-size: 28px;
}

.s-prod-site-item .s-info .s-tip .s-tel a {
    color: #ffffff;
}

.s-prod-site-item .s-info .s-text {
    color: #999;
    line-height: 28px;
    margin-bottom: 15px;
}

.s-prod-site-item .s-info .s-more {
    color: #aa8b39;
}

.s-prod-site-item .s-info .s-more:hover {
    text-decoration: underline;
}

.s-prod-site-item .s-list {
    padding: 0;
}

.s-prod-site-item .s-list .row {
    margin: 0;
}

.s-prod-site-item .s-list .s-link {
    border-right: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.s-prod-site-item .s-list .s-link .s-name {
    font-weight: normal;
}

/* 分页样式 */
.s-page-style-one {
    text-align: center;
    margin-bottom: 30px;
}

.s-page-style-one .pagination > li > a, .s-page-style-one .pagination > li > span {
    margin: 0 5px;
}

/* 产区详情页 */
.s-body-sitedtl {
    padding: 40px 0;
}

.s-body-sitedtl-other .s-title {
    color: #333;
    background: url("../images/icon-title-one.png") no-repeat left center;
    padding-left: 20px;
    line-height: 50px;
    border-bottom: 1px solid #ccc;
}

/* 列表样式 */
.s-list-style-one .list-group-item {
    border: none;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 0;
    background-color: #fafafa;
}

.s-list-style-one .list-group-item.active, .s-list-style-one .list-group-item.active:focus, .s-list-style-one .list-group-item.active:hover {
    border-color: #eaeaea;
    background-color: #aa8b39;

}

.s-icon-more-white {
    background: url("../images/bg-icon-white.png") no-repeat 0 center;
    width: 24px;
}

.s-list-style-one .s-icon-more-white {
    display: none;
}

.s-list-style-one .list-group-item.active .s-icon-more-white {
    display: block;
}

.s-list-style-one a.list-group-item:focus, .s-list-style-one a.list-group-item:hover, .s-list-style-one button.list-group-item:focus, .s-list-style-one button.list-group-item:hover {
    background-color: #f0f0f0;
}

/* 产区红酒列表 */
.s-icon-site-title-one {
    background: url("../images/icon-site-title-one.png") no-repeat;
    height: 36px;
    width: 32px;
}

.s-body-sitedtl-main-title {
    height: 50px;
    border-bottom: 1px solid #ccc;
}

.s-body-sitedtl-main-title .s-title-text {
    font-weight: bold;
    color: #aa8b39;
    line-height: 50px;
    margin-right: 50px;
}

.s-body-sitedtl-main-title .s-title-nav {
    float: left;
}

.s-body-sitedtl-main-title .s-title-nav .s-item {
    line-height: 47px;
    display: inline-block;
    background: #fff;
    float: left;
    border: 1px solid transparent;
    border-top: 2px solid transparent;
    border-bottom: 1px solid #ccc;
    padding: 0 30px;
    font-size: 18px;
}

.s-body-sitedtl-main-title .s-title-nav .s-item.active {
    border-color: #ccc;
    border-bottom-color: transparent;
    border-top-color: #aa8b39;
}

.s-hide {
    display: none;
}

.s-hide.active {
    display: block;
}

.s-title-share {
    float: right; /* height:50px; */
    /* line-height:50px; */
}

.s-title-share .s-box {
    margin-top: 10px;
    margin-bottom: 10px;
    height: 30px;
    line-height: 30px;
}

.s-title-share .s-text {
    float: left;
    margin-right: 10px; /* line-height:28px; */
}

/* 红酒列表 */
.s-body-sitedtl-list {
    margin: 20px 0;
    border-top: 1px solid #eaeaea;
    border-left: 1px solid #eaeaea;
}

.s-body-sitedtl-list > div {
    padding: 0;
}

.s-body-sitedtl-list .s-image-text-item .s-link {
    border-right: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.s-body-sitedtl-list .s-image-text-item .s-name {
    font-weight: normal;
}

/* 红酒列表分页 */
.s-body-sitedtl-main .s-page-style-one {
    text-align: left;
    overflow: hidden;
}

.s-body-sitedtl-main .s-page-style-one .pagination {
    float: right;
}

.s-page-style-one .s-page-total {
    float: left;
    margin: 20px 0;
}

.s-page-style-one .form-control {
    display: inline-block;
    width: auto;
}

.s-c-red {
    color: #d9534f;
}

.s-page-style-one .s-page-total .s-total {
    margin: 0 4px;
}

.s-page-style-one select.form-control {
    margin-right: 8px;
}

.s-page-style-one input.form-control {
    width: 60px;
    margin: 0 5px;
}

.s-page-style-one .btn {
    margin-left: 15px;
    margin-top: -4px;
}

.s-body-sitedtl-info {
    padding: 20px 0 50px;
}

.s-body-sitedtl-info .s-content {
    background-color: #f5f5f5;
    line-height: 28px;
    padding: 30px;
}

.s-body-sitedtl-info .s-content p {
    text-indent: 28px;
    margin-bottom: 30px;
}

.s-body-sitedtl-info .s-content img {
    max-width: 100%;
}

/* 公司简介详情 */
.s-body-company-intro {
    padding: 40px 30px 0;
    min-height: 200px;
    background-color: #f5f5f5;
}

.s-body-company-intro p {
    text-align: justify;
}

.s-body-company-intro img {
    max-width: 100%;
    margin-bottom: 20px;
}

.s-body-company-intro .s-company-intro-box {
    overflow: hidden;
    padding-bottom: 60px;
}

.s-body-company-intro .s-company-intro-box .s-img-fl {
    width: 50%;
    float: left;
    margin-right: 30px;
}

.s-body-company-intro .s-company-intro-box .s-img-fr {
    width: 50%;
    float: right;
    margin-left: 30px;
}

.s-body-company-intro .s-company-intro-box .s-main-title {
    margin-bottom: 15px;
    font-size: 20px;
    color: #333;
    font-weight: bold;
}

.s-body-company-intro .s-company-intro-box .s-main-title .s-tip {
    color: #999;
    display: block;
    font-weight: normal;
    margin-top: 8px;
    font-size: 18px;
}

.s-body-company-intro .s-company-intro-box .s-section {
    line-height: 24px;
}

.s-body-company-intro .s-company-intro-box .s-section .s-text {
    margin-bottom: 30px;
}

.s-body-company-intro .s-company-intro-box .s-italic {
    font-size: 18px;
    font-style: italic;
}

.s-body-company-intro .s-company-intro-box .s-contact-info {
    line-height: 28px;
    color: #aa8b39;
}

.s-body-company-intro .s-company-intro-box .s-chateau-info {
    line-height: 24px;
}

.s-body-company-intro .s-company-intro-box .s-chateau-info .s-img {
    margin-bottom: 25px;
}

.s-celebrated-dictum {
    border-left: 5px solid #aa8b39;
    padding: 15px 25px;
    margin-bottom: 60px;
    background-color: #ebebeb;
    color: #333;
}

.s-celebrated-dictum .s-text {
    font-family: "KaiTi";
    line-height: 28px;
}

.s-celebrated-dictum .s-name {
    text-align: right;
    font-size: 14px;
}

/* 红酒沙龙页面 */
.s-salon-main {
    padding-top: 40px;
    padding-bottom: 50px;
}

.s-salon-main .s-tab-links-one {
    margin-bottom: 30px;
}

.s-tab-links-one .s-link {
    float: left;
    width: 25%;
    text-align: center;
    line-height: 50px;
    color: #aa8b39;
    font-size: 20px;
    background-color: #ededed;
    border-bottom: 1px solid #aa8b39;
    font-weight: bold;
    position: relative;
    cursor: pointer;
}

.s-tab-links-one .s-link:hover {
    background: #e5e5e5;
}

.s-tab-links-one .s-link .s-i {
    position: absolute;
    width: 100%;
    height: 12px;
    left: 0;
    bottom: -12px;
    background: url('../images/icon-tab-link-one.png') no-repeat center top;
    display: none;
}

.s-tab-links-one .s-link.active {
    color: #fff;
    background-color: #aa8b39;
}

.s-tab-links-one .s-link.active .s-i {
    display: block;
}

.s-salon-main .s-body-image-text-list-one .s-image-text-item .s-tip {
    height: 60px;
    text-align: justify;
}

.s-salon-main .s-body-image-text-list-one .s-image-text-item .s-name {
    font-size: 16px;
    height: auto;
    margin: 15px 0;
}

/* 红酒沙龙列表页 */
.s-salon-list-box .s-body-news-item {
    margin-bottom: 0;
}

.s-salon-list-box .s-body-news-item .s-image-text-link2 {
    padding: 30px 10px;
    display: block;
    overflow: hidden;
    border-bottom: 1px solid #eeeeee;
}

.s-salon-list-box .s-body-news-item .s-image-text-link2 .s-img-box {
    width: 285px;
    height: 180px;
}

.s-salon-list-box .s-body-news-item .s-image-text-link2:hover {
    background: #fafafa;
}

.s-salon-list-box .s-body-news-item .s-text {
    font-size: 14px;
    line-height: 28px;
    height: 112px;
}

.s-salon-list-box .s-body-news-item .s-more {
    color: #aa8b39;
    display: inline-block;
    margin-top: 18px;
    border-bottom: 1px solid transparent;
    line-height: 1;
}

.s-salon-list-box .s-body-news-item .s-more .s-margin {
    margin-right: -6px;
}

.s-salon-list-box .s-body-news-item .s-more .glyphicon {
    font-size: 12px;
    transform: scale(.8);
}

.s-salon-list-box .s-body-news-item .s-image-text-link2:hover .s-more {
    border-bottom-color: #aa8b39; /* text-decoration:underline; */
}

/* 手机导航栏个性化 */
.s-head-nav-web-btn .s-btn {
    border: 1px solid #b2964c;
    background: transparent;
}

.s-head-nav-web-btn .s-btn .icon-bar {
    width: 22px;
    height: 2px;
    display: inline-block;
}

.navbar-toggle {
    display: block;
    margin: 0;
}

.s-head-nav-web-bg {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, .6);
    z-index: -1;
    opacity: 0;
}

.s-head-nav-web-box {
    position: fixed;
    height: 100%;
    width: 65%;
    top: 0;
    right: -65%;
    background: #fff;
    z-index: 1200;
    overflow: scroll;
    padding: 20px 0;
    transition: all .2s linear;
}

.s-head-nav.on .s-head-nav-web-bg {
    opacity: 1;
    z-index: 1100;
}

.s-head-nav.on .s-head-nav-web-box {
    right: 0;
}

.s-head-nav-web-box .s-list {
    margin: 20px 0;
}

.s-head-nav-web-box .s-list > .s-item {
    border-bottom: 1px solid #ebebeb; /*padding:10px 25px;*/
    font-size: 16px;
}

.s-head-nav-web-box .s-parent-link {
    display: inline-block;
    padding: 10px 25px;
    min-width: 68%;
}

.s-head-nav-web-box .s-item > .glyphicon {
    display: none;
    float: right;
    padding: 12px 20px;
}

.s-head-nav-web-box .s-has-child > .glyphicon {
    display: inline-block;
}

.s-head-nav-web-box .s-item > .glyphicon-menu-up {
    display: none;
}

.s-head-nav-web-box .s-item.on { /* background:#aa8b39; */
    /* color:#fff; */
    color: #aa8b39;
    background-color: transparent;
}

.s-head-nav-web-box .s-item.on .s-parent-link {
    color: #aa8b39; /* color:#fff; */
}

.s-head-nav-web-box .s-item.on > .glyphicon-menu-up {
    display: block;
}

.s-head-nav-web-box .s-item.on > .glyphicon-menu-down {
    display: none;
}

.s-head-nav-web-box .s-item .s-child-list {
    padding: 0 0 10px;
    display: none;
}

.s-head-nav-web-box .s-item.on .s-child-list {
    display: block;
}

.s-head-nav-web-box .s-item .s-child-list > li { /*padding:10px 20px;*/
}

.s-head-nav-web-box .s-item .s-child-list a {
    font-size: 16px;
    display: block;
    padding: 10px 20px 10px 40px;
}

.s-head-nav-web-box .s-item.active .s-parent-link {
    color: #aa8b39;
    font-weight: bold;
}

/* 沙龙详情页 */
.s-salon-detail-img {
    position: relative;
    background: url("../images/bg-salon-detail.jpg") no-repeat center top;
    background-size: auto 100%;
    height: 150px;
}

.s-salon-detail-img .container {
    position: relative;
    top: 34%;
}

.s-salon-detail-img h2 {
    font-size: 36px;
    letter-spacing: 5px;
    color: #aa8b39;
}

.s-salon-detail-img p {
    margin-top: 7px;
    font-size: 24px;
    font-family: Arial;
    color: #757575;
}

.s-salon-detail-main {
    padding: 50px 0;
}

.s-salon-detail-intro {
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
}

.s-salon-detail-intro .s-img {
    max-width: 100%;
}

.s-salon-detail-intro .s-text {
    height: 42px;
    line-height: 42px;
    border-bottom: 1px solid #ccc;
}

.s-title-style-one {
    font-size: 30px;
    color: #333;
    font-weight: bold;
}

.s-salon-detail-section .s-section-tip {
    line-height: 50px;
}

.s-salon-detail-section .s-section-tip .s-item {
    margin-right: 30px;
    color: #999999;
}

.s-salon-detail-section .s-main-body {
    line-height: 24px;
    padding: 40px 30px 10px;
    background-color: #f5f5f5;
    border-top: 1px solid #ccc;
    min-height: 200px;
}

/*新闻详情页编辑器内容重置*/
.s-salon-detail-section .s-main-body {

}

.s-salon-detail-section .s-main-body iframe {
    width: 100%;
    margin: 0 auto 20px;
}

.s-salon-detail-section .s-main-body h4 {
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
    color: #333333;
}

.s-salon-detail-section .s-main-body p {
    color: #666666;
    line-height: 28px;
    padding-bottom: 1.75em;
    text-align: justify;
}

.s-salon-detail-section .s-main-body img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

/*招商代理详情页编辑器内容重置*/
/*.s-body-company-intro {*/
/*}*/
/*.s-body-company-intro p {*/
/*color:#666666;*/
/*line-height:28px;*/
/*}*/
/*.s-body-company-intro img {*/
/*max-width:100%;*/
/*}*/

/*.s-salon-detail-section .s-main-body .s-img-box {*/
/*text-align:center;*/
/*margin-bottom:30px;*/
/*}*/

/*.s-salon-detail-section .s-main-body .s-title {*/
/*font-size:18px;*/
/*color:#333;*/
/*margin-bottom:30px;*/
/*font-weight:bold;*/
/*}*/

/*.s-salon-detail-section .s-main-body .s-title {*/
/*font-size:18px;*/
/*color:#333;*/
/*margin-bottom:30px;*/
/*font-weight:bold;*/
/*}*/

/*.s-salon-detail-section .s-main-body .s-p {*/
/*text-indent:30px;*/
/*margin-bottom:30px;*/
/*}*/

.s-salon-detail-other-items {
    margin-top: 40px;
    margin-bottom: 20px;
}

.s-salon-detail-other-items .s-prev .s-link, .s-salon-detail-other-items .s-next .s-link {
    display: block;
    background: #f5f5f5;
    padding: 20px 30px 25px;
    font-size: 14px;
    color: #999;
    transition: all .3s linear;
}

.s-salon-detail-other-items .s-prev {
}

.s-salon-detail-other-items .s-next {
    text-align: right;
}

.s-salon-detail-other-items .s-tip {
    margin-bottom: 10px;
}

.s-salon-detail-other-items .s-img {
    width: 78px;
    height: 64px;
}

.s-salon-detail-other-items .s-prev .s-img {
    float: left;
    margin-right: 20px;
    background: #fff;
}

.s-salon-detail-other-items .s-next .s-img {
    float: right;
    margin-left: 20px;
}

.s-salon-detail-other-items .s-title {
    color: #000;
    font-size: 14px;
    margin-bottom: 10px;
    padding-top: 3px;
}

.s-salon-detail-other-items .s-text {
    color: #999;
    font-size: 12px;
    height: 36px;
    line-height: 18px;
}

.s-salon-detail-other-items .s-link:hover {
    background: #fafafa;
}

.s-salon-detail-other-items .s-link:hover .s-title {
    color: #aa8b39;
}

/* 红酒视界主页样式 */
.s-wine-video-list .s-body-video-link .s-link-box {
    height: 170px;
}

.s-wine-video-list .s-body-video-link {
    padding: 0;
    background-color: transparent;
    margin-bottom: 30px;
}

.s-wine-video-list .s-body-video-link .s-title {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 0px;
}

.s-wine-video-list .s-body-video-link .s-text {
    height: 68px;
    text-align: justify;
}

/* 红酒详情页样式 */
.s-head-nav-pc {
    box-shadow: 0 5px 8px rgba(0, 0, 0, .05);
    position: relative;
    z-index: 1;
}

.s-breadcrumb {
    line-height: 40px;
    font-size: 12px;
}

.s-breadcrumb a {
    font-size: 12px;
}

.s-breadcrumb .glyphicon {
    color: #aaa;
    transform: scale(.9);
}

.s-wine-detail-sell-img .carousel {
    width: 92.85%;
}

.s-wine-detail-sell-img .carousel-inner {
    border: 1px solid #eaeaea;
    -webkit-box-shadow: 7px 7px 0 #f5f5f5;
    -moz-box-shadow: 7px 7px 0 #f5f5f5;
    box-shadow: 7px 7px 0 #f5f5f5;
}

.s-wine-detail-sell-img .carousel-inner .item {
    height: 0;
    padding-top: 100%;
    overflow: hidden;
    background: #f1f1f1;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    -o-transition: -o-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
}

.s-wine-detail-sell-img .carousel-inner .item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.s-wine-detail-sell-info {
    padding: 0;
}

.s-wine-detail-sell-info .s-big-title {
    color: #333;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.s-wine-detail-sell-info .s-eng-tip {
    font-size: 16px;
    margin-bottom: 40px;
}

.s-wine-detail-sell-info .s-info-list {
    line-height: 24px;
    margin-bottom: 40px;
}

.s-wine-detail-sell-info .s-info-list .s-name {
    float: left;
    margin-right: 20px;
    color: #999;
}

.s-wine-detail-sell-info .s-info-list .s-item {
    margin-bottom: 10px;
}

.s-wine-detail-sell-info .s-info-list .s-price {
    color: #aa8b39;
    font-size: 24px;
}
.s-wine-detail-sell-info .s-info-list .s-oldprice {
    color: #999999;
    font-size: 22px;
    text-decoration: line-through;
}

.s-wine-detail-sell-info .s-info-list .s-select {
    color: #999;
    display: inline-block;
    border: 1px solid #999;
    padding: 0 5px;
    margin-right: 10px;
}

.s-wine-detail-sell-info .s-info-list .s-select:hover {
    color: #aa8b39;
}

.s-wine-detail-sell-info .s-info-list .s-select.active {
    color: #aa8b39;
    border-color: #aa8b39;
}

.s-wine-detail-sell-info .s-sell-buy {
    margin-bottom: 5px;
}

.s-wine-detail-sell-info .s-sell-buy .s-btn {
    background-color: #aa8b39;
    border-color: #aa8b39;
    color: #fff;
    margin-right: 25px;
    margin-bottom: 10px;
}

.s-btn .glyphicon {
    margin-right: 6px;
}

.s-wine-detail-sell-info .s-sell-buy .s-btn:hover {
    opacity: .8;
}

.s-wine-detail-sell-info .s-sell-buy .s-tip {
    color: #999;
    display: inline-block;
}

.s-wine-detail-sell-info .s-title-share {
    float: none;
}

.s-wine-detail-recommend-list .s-body-image-text-list-one .s-image-text-item .s-link {
    padding: 15px 0;
    border-bottom: 1px solid #eaeaea;
}

.s-wine-detail-recommend-list .s-body-image-text-list-one .s-image-text-item .s-link:hover {
    background-color: transparent;
}

.s-wine-detail-recommend-list .s-body-image-text-list-one .s-image-text-item .s-name {
    height: 20px;
}

.s-title-style-two {
    height: 50px;
    border-bottom: 1px solid #ccc;
    font-weight: bold;
    color: #aa8b39;
    line-height: 50px;
}

/* 独家代理页面样式 */
.s-agency-info-one, .s-agency-info-two {
    background-color: #d9cdb2;
    margin-bottom: 40px;
}

.s-agency-info-one {
    height: 380px;
}

.s-agency-info-two {
    height: 620px;
}

.s-agency-info .s-autocenter-imgbox {
    height: 100%;
    width: 550px;
}

.s-agency-info .s-img {
    z-index: 100;
}

.s-agency-info .s-box-main {
    width: 590px;
    height: 100%;
    background-color: #f5f5f5;
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 10;
    line-height: 24px;
    top: 20px;
}

.s-agency-info-one .s-box-main {
    left: 20px;
    padding: 90px 60px 0 40px;
}

.s-agency-info-two .s-box-main {
    right: 20px;
    padding: 160px 40px 0 60px;
}

.s-agency-info .s-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.s-agency-info-one .s-title {
    color: #333;
}

.s-agency-info .s-eng {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: justify;
}

.s-agency-info-one .s-eng {
    color: #ccc;
}

.s-agency-info-two .s-eng, .s-agency-info-two .s-title {
    color: #d9cdb2;
}

.s-agency-info .s-text {
    text-align: left;
    text-indent: 30px;
    margin-bottom: 20px;
}

.s-agency-site-list {
    line-height: 26px;
}

.s-agency-site-list .s-item {
    margin-bottom: 40px;
    overflow: hidden;
}

.s-agency-site-list .s-index {
    float: left;
    color: #dedede;
    font-size: 40px;
    font-style: italic;
    line-height: 40px;
}

.s-agency-site-list .s-item-main {
    margin-left: 60px;
}

.s-agency-site-list .s-item-main .s-img {
    float: left;
    margin-right: 30px;
    width: 180px;
    height: 140px;
    margin-bottom: 10px;
}

.s-agency-site-list .s-item-main .s-title {
    font-size: 18px;
    color: #333;
    line-height: 26px;
    font-weight: bold;
    margin-bottom: 10px;
}

.s-agency-site-list .s-item-main .s-eng {
    display: block;
    font-weight: normal;
}

.s-agency-site-list .s-item-main .s-text {
    text-indent: 30px;
}

.s-agency-intro {
    background-color: #f5f5f5;
    padding-bottom: 50px;
    padding-top: 20px;
}

.s-agency-intro .s-section {
    text-indent: 30px;
    line-height: 28px;
}

.s-agency-intro .s-section .s-text {
    margin-bottom: 20px;
}

.s-agency-grape-classify {
    padding-top: 30px;
    color: #999;
    font-size: 16px;
    text-align: center;
}

.s-agency-grape-classify .s-item {
    padding: 25px 0;
    background-color: #f5f5f5;
    margin-bottom: 20px;
}

.s-agency-grape-classify .s-title {
    font-size: 18px;
    color: #333;
    line-height: 26px;
    height: 26px;
}

.s-agency-grape-classify .s-text {
    height: 22px;
}

.s-agency-grape-classify .s-grape-tip {
    color: #666;
    font-size: 14px;
    line-height: 26px;
    padding-top: 30px;
    padding-bottom: 90px;
    text-align: left;
}

.s-agency-grape-classify .s-grape-tip .s-img {
    margin-bottom: 15px;
}

/* 联系我们 */
.s-contact-us-main {
    padding: 240px 30px 30px;
    background: #f5f5f5 url("../images/icon-contact-1.png") no-repeat center top;
    background-size: 100%;
}

.s-contact-us-main .s-contact-num {
    font-size: 16px;
    padding: 40px 0 40px 30px;
    background-color: #fff;
    border-bottom: 2px solid #a38637;
    line-height: 36px;
    margin-bottom: 28px;
}

.s-contact-us-main .s-contact-num .s-icon-box {
    height: 80px;
    width: 80px;
    background-color: #999999;
    border-radius: 50%;
    margin-right: 30px; /* margin-bottom:10px; */
}

.s-contact-us-main .s-contact-num .s-num {
    color: #333;
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
}

.s-contact-us-main-code {
    text-align: center;
}

.s-contact-us-main-code .s-item {
    margin-bottom: 30px;
}

.s-contact-us-main-code .s-box {
    background: #fff;
    padding: 26px 30px 16px;
}

.s-contact-us-main-code .s-text {
    background: #fff;
    padding-bottom: 16px;
}

.s-contact-us-main-code .s-item .s-img {
    width: 100%;
}

.s-contact-us-main-map {
    height: 400px;
}

.s-static-banner {
    padding: 85px 0;
    background: #000 url("../images/icon-static-banner-1.png") no-repeat center center;
    background-size: auto 100%;
}

.s-static-banner .s-title {
    font-size: 36px;
    color: #aa8b39;
    margin-bottom: 15px;
}

.s-static-banner .s-eng {
    font-size: 24px;
    color: #757575;
}

/* 招商代理 */
.s-agency-policy-main {
    min-height: 200px;
    background: #f5f5f5;
}

.s-agency-policy-main img {
    max-width: 100%;
}

.s-agency-policy-main .s-main-box {
    padding: 50px 30px 0;
}

.s-agency-policy-main .s-original-price {
    border: 8px solid #aa8b39;
    background-color: #967724;
    color: #fff;
}

.s-agency-policy-main .s-original-price .s-title-box {
    text-align: center;
    font-size: 22px;
    color: #ffe68f;
    font-weight: bold;
    background: url("../images/icon-agency-way-price.png") no-repeat center center;
    line-height: 48px;
    padding: 10px 0;
}

.s-agency-policy-main .s-original-price .s-price-list { /* line-height:30px; */
    padding: 20px 70px 10px;
}

.s-agency-policy-main .s-original-price .s-price-list .s-item {
    margin-bottom: 10px;
}

.table-responsive {
    border: none;
}

.table {
    margin-bottom: 0;
}

.table-responsive.s-table-list {
    margin-bottom: 20px;
}

.s-agency-policy-main .s-table-list .table, .table-responsive.s-table-list {
    background: #fff;
}

.s-agency-policy-main .s-table-list td {
    vertical-align: middle;
    padding: 15px 8px;
    border-top: none;
    border-bottom: 1px solid #ccc;
}

.s-agency-policy-main .s-table-list th {
    padding: 15px 10px;
    color: #aa8b39;
    font-size: 16px;
    border-bottom: 1px solid #ccc;
}

.s-agency-policy-main .s-table-list tbody {
    color: #999999;
}

.s-agency-policy-main .s-table-list tbody .s-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.s-agency-policy-main .s-table-list tbody .s-price {
    color: #aa8b39;
    font-weight: bold;
}

.s-agency-policy-main .s-other-tip {
    line-height: 24px;
}

/* 独家代理 - 澳洲红酒 */
.s-agency-intro-one .s-title-box {
    padding: 170px 0;
    background: url("../images/img-agency-1.jpg") no-repeat center center;
    background-size: auto 100%;
}

.s-agency-intro-one .s-title-box .s-eng {
    color: #d7bdb0;
    font-size: 20px;
    letter-spacing: 2px;
}

.s-agency-intro-one .s-title-box .s-title {
    color: #fff;
    font-size: 50px;
    line-height: 74px;
    letter-spacing: 6px;
}

.s-agency-intro-two {
    background-color: #6c5f5f;
    color: #dad7d7;
    padding-top: 35px;
    font-size: 16px;
    line-height: 36px;
}

.s-agency-intro-two .s-img-box {
    text-align: center;
}

.s-agency-intro-two .s-img-box .s-img {
    max-width: 100%;
}

/* 独家代理  lavina */

.s-style-lavina.s-agency-intro-one .s-title-box {
    background-image: url("../images/img-agency-lavina.jpg");
}

.s-style-lavina.s-agency-intro-one .s-title-box .s-eng {
    color: #a4a4a4;
}

.s-style-lavina.s-agency-intro-one .s-title-box .s-title {
    color: #94774b;
}

.s-agency-intro-one .s-title-box .s-text {
    font-size: 20px;
    color: #a4a4a4;
    line-height: 36px;
    width: 300px;
    margin-top: 15px;
}

.s-style-lavina.s-agency-intro-one .s-title-box {
    padding: 140px 0 110px;
}

.s-style-lavina.s-agency-intro-two {
    background-color: #94774b;
    color: #e2dcd4;
}

.s-style-lavina.s-agency-intro-two .s-img-box {
    text-align: left;
    margin-bottom: 30px;
}

.s-style-lavina.s-agency-intro-two .s-last-item {
    margin-bottom: 30px;
}

.s-agency-lavina-info .s-body-common-title {
    margin-top: 50px;
}

.s-agency-lavina-info .s-text-box {
    background: url("../images/icon-agency-l-info-bg-l.png") no-repeat;
    padding-left: 60px;
    line-height: 26px;
    margin-bottom: 20px;
}

.s-agency-lavina-info .s-text-box .s-title {
    color: #333;
    line-height: 44px; /* margin-bottom:10px; */
}

.s-agency-lavina-info .s-text-box .s-text {
    text-indent: 30px;
    margin-bottom: 20px;
    text-align: justify;
}

.s-agency-lavina-info .s-text-box .s-comment {
    font-size: 18px;
    font-weight: bold;
    background: url("../images/icon-agency-l-info-comment.png") no-repeat;
    padding: 20px 0 5px 20px;
    line-height: 28px;
}

.s-agency-lavina-info .s-text-box .s-from {
    color: #999;
    margin-bottom: 5px;
}

.s-agency-lavina-info .s-text-box .s-person {
    color: #999;
    margin-bottom: 5px;
    text-align: right;
}

.s-agency-lavina-info .s-text-box .s-person .s-name {
    margin-bottom: 84px;
}

.s-commont-star {
    overflow: hidden;
}

.s-commont-star .s-star {
    float: left;
    height: 22px;
    width: 22px;
    background: url("../images/icon-star.png") no-repeat 0 0;

}

.s-commont-star .s-star.s-on {
    background-position: 0 -30px;
}

.s-commont-star .s-star.s-half {
    background-position: 0 -60px;
}

.s-agency-lavina-info .s-row-box {
    margin-bottom: 60px;
}

.s-agency-lavina-info .s-img-box {
    margin-bottom: 20px;
}

.s-agency-lavina-info .s-text-box.s-right {
    background: url("../images/icon-agency-l-info-bg-r.png") no-repeat top right;
    padding-left: 0;
    padding-right: 60px;
}

.s-agency-lavina-info .s-text-box .s-title-tip {
    color: #bf9d6a;
    font-size: 16px;
    margin-bottom: 10px;
}

.s-agency-lavina-wines {
    margin-bottom: 50px;
}

.s-agency-lavina-wines .s-body-common-title {
    margin-top: 0;
    margin-bottom: 50px;
}

.s-agency-lavina-wines .s-row-one {
    background-color: #f7f3ec;
    position: relative;
    margin-top: 30px;
}

.s-agency-lavina-wines .s-row-one .s-img-wine {
    position: absolute;
    padding-top: 30px;
}

.s-agency-lavina-wines .s-row-one .s-img-wine .s-img {
    max-width: 100%;
}

.s-agency-lavina-wines .s-row-one .s-text-box { /* padding:40px 0 30px; */
    padding-top: 40px;
    padding-bottom: 10px;
}

.s-agency-lavina-wines .s-row-one .s-text-box .s-eng {
    font-size: 20px;
    color: #b5a287;
}

.s-agency-lavina-wines .s-row-one .s-text-box .s-title {
    font-size: 36px;
    color: #94774b;
    font-weight: bold;
    margin-bottom: 15px;
}

.s-agency-lavina-wines .s-row-one .s-text-box .s-tip {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.s-agency-lavina-wines .s-row-two {
    background-color: #94774b;
}

.s-agency-lavina-wines .s-row-two .s-text-box {
    color: #e2d6c4;
    line-height: 24px;
    padding-top: 30px;
}

.s-agency-lavina-wines .s-row-two .s-text-box .s-trait-item {
    margin-bottom: 25px;
}

.s-agency-lavina-wines .s-row-two .s-text-box .s-title {
    color: #fff;
    font-size: 20px;
    display: block;
    margin-bottom: 10px;
}

.s-agency-lavina-wines .s-row-three {
    background-color: #f7f3ec;
}

.s-agency-lavina-wines .s-row-three .s-text-box {
    padding-top: 25px;
    padding-bottom: 25px;
    line-height: 28px;
}

.s-agency-lavina-wines .s-row-three .s-text-box .s-text { /* margin-bottom:35px; */
    text-indent: 30px;
}

.s-agency-lavina-wines .s-row-three .s-text-box .s-title {
    font-size: 16px; /* color:#333; */
    margin-bottom: 5px;
    margin-top: 35px;
    font-weight: bold;
}

.s-agency-lavina-wines .s-wine-two .s-row-one, .s-agency-lavina-wines .s-wine-two .s-row-three {
    background-color: #fbf8e8;
}

.s-agency-lavina-wines .s-wine-two .s-row-two {
    background-color: #fff;
}

.s-agency-lavina-wines .s-wine-two .s-row-one .s-text-box .s-eng {
    color: #dcc68c;
}

.s-agency-lavina-wines .s-wine-two .s-row-one .s-text-box .s-title {
    color: #ceae58;
}

.s-agency-lavina-wines .s-wine-two .s-row-two .s-text-box {
    color: #666;
}

.s-agency-lavina-wines .s-wine-two .s-row-two .s-text-box .s-title {
    color: #333;
}

/* 独家代理 - 幸运火鸡 */
.s-agency-intro-three {
    background: #772c2c url("../images/bg-agency-turkey.jpg") no-repeat center center;
    background-size: auto 100%;
}

.s-mw-100a {
    max-width: 100%;
}

.s-style-one {
    display: block;
    margin: 0 auto;
}

.s-agency-intro-three .s-img-box {
    padding-top: 30px;
}

.s-agency-intro-three .s-logo-box {
    padding-top: 40px;
    text-align: center;
}

.s-agency-intro-three .s-text-box {
    /* color: #c3acac; */
    color: #fff;
    line-height: 26px;
    padding-top: 100px;
    font-size: 16px;
}

.s-agency-intro-three .s-text-box .s-title {
    color: #fff;
    font-size: 50px;
    letter-spacing: 6px;
    margin-bottom: 30px;
}

.s-agency-intro-three .s-text-box .s-eng {
    font-size: 20px;
}

.s-agency-intro-three .s-text-box .s-text {
    text-align: justify;
}

.s-agency-info .s-box-main.s-style-turkey {
    text-align: left;
    padding-top: 50px;
    font-weight: bold;
    line-height: 36px;
    font-size: 18px;
    padding-bottom: 40px;
}

.s-agency-info .s-box-main.s-style-turkey .s-tip {
    color: #999;
    font-weight: normal;
    font-size: 20px;
}

.s-agency-info .s-style-turkey .s-title {
    font-size: 36px;
    font-weight: bold;
    color: #aa8b39;
    margin-top: 10px;
    margin-bottom: 50px;
}

.s-agency-info .s-style-turkey .s-img-list {
    margin-top: 30px;
}

.s-agency-info .s-style-turkey .s-sell-buy {
    margin-top: 60px;
    text-align: center;
}

.s-agency-info .s-style-turkey .s-sell-buy .s-btn {
    background-color: #aa8b39;
    border-color: #aa8b39;
    color: #fff;
    margin-right: 10px;
    margin-bottom: 10px;
    vertical-align: baseline;
}

.s-agency-info .s-style-turkey .s-sell-buy .s-btn:hover {
    opacity: .8;
}

.s-agency-info .s-style-turkey .s-sell-buy .s-tip {
    color: #999;
    display: inline-block;
    font-size: 14px;
}

.s-turkey-trait .s-body-common-title {
    margin-top: 50px;
    margin-bottom: 40px;
}

.s-turkey-trait-box {
    background: url("../images/img-turkey-8.jpg") no-repeat;
    background-size: 100%;
    padding: 30px 60px 30px 125px;
    font-family: "KaiTi";
    font-style: italic;
    font-size: 18px;
    color: #956f48;
    font-weight: bold;
    line-height: 30px;
}

.s-common-img-box-one {
    border: 5px solid #e0d1c3;
    border-radius: 50%;
    overflow: hidden;
    width: 110px;
    height: 110px;
    position: relative;
}

.s-common-img-box-one .s-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.s-turkey-trait-box .s-common-img-box-one {
    margin-right: 40px;
}

.s-turkey-trait-box .s-text {
    padding: 25px 0;
}

.s-turkey-winmakers {
    margin-bottom: 50px;
}

.s-turkey-winmakers .s-body-common-title {
    margin-top: 70px;
    margin-bottom: 50px;
}

.s-turkey-winmakers .s-winemaker-item {
    background-color: #f5f5f5;
    padding: 20px 60px;
    margin-bottom: 20px;
}

.s-turkey-winmakers .s-common-img-box-one {
    width: 170px;
    height: 170px;
    border: 8px solid #f1e8df;
    margin-right: 60px;
    margin-bottom: 10px;
}

.s-turkey-winmakers .s-winemaker-item .s-section {
    line-height: 24px;
    padding: 20px 0;
    text-align: justify;
}

.s-turkey-winmakers .s-winemaker-item .s-section .s-tip {
    font-size: 18px;
    color: #999;
}

.s-turkey-winmakers .s-winemaker-item .s-section .s-name {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    line-height: 40px;
    margin-bottom: 15px;
}

/*新增2019-04-22 王*/
/*首页产品图片间隔重置*/
.s-body-area .s-body-image-text-list-one .s-image-text-item .s-link {
    padding: 15px;
}

/*立即购买二维码弹层位置*/
.modal-sm {
    width: 450px;
}

.modal-dialog {
    top: 50%;
    margin-top: -240px;
}

.modal-content {
    height: 340px;
    text-align: center;
    border: none;
    border-radius: 0;
}

.modal-content .s-img-box {
    padding: 50px 0 30px;
}

.modal-content .s-img-box .s-img {
    width: 200px;
    height: 200px;
}

/* 产品介绍下载 */
.s-style-table-one .s-bg-box {
    min-height: 800px;
    padding-bottom: 70px;
    background-color: #f5f5f5;
}

.s-style-table-one .table > thead > tr > th {
    font-size: 14px; /* font-weight:bold; */
    padding: 15px 25px;
    border-bottom: 1px solid #ccc;
    background-color: #e4e4e4;
}

.s-style-table-one .table > tbody > tr > td {
    padding: 15px 25px;
    border-top: none;
    border-bottom: 1px solid #ccc;
}

.s-style-table-one .table-hover > tbody > tr:hover {
    background-color: #fff; /* color:#aa8b39; */
}

.s-style-table-one .table-hover > tbody > tr:hover .s-name {
    color: #aa8b39;
}

.s-style-table-one .table .s-type, .s-style-table-one .table .s-size {
    color: #999;
    font-style: italic;
}

.s-style-table-one .table-hover > tbody > tr:hover .s-icon-down {
    background-position: 0 -50px;
}

/*滚动条样式*/
.table-responsive::-webkit-scrollbar { /*滚动条整体样式*/
    width: 16px; /*高宽分别对应横竖滚动条的尺寸*/
    height: 16px;
}

.table-responsive::-webkit-scrollbar-thumb { /*滚动条里面小方块*/
    border-radius: 8px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.2);
}

.table-responsive::-webkit-scrollbar-track { /*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    background: rgba(0, 0, 0, 0.1);
}

/* 地图提示优化 */
.BMap_bubble_title {
    color: #aa8b39;
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 5px;
}

.bd_weixin_popup {
    height: auto !important;
}

.s-icon-down {
    background: url(../images/icon-down.png) no-repeat;
    width: 16px;
    height: 16px;
}

.null {
    pointer-events: none;
    cursor: default;
}

.null .s-title {
    color: #999999;
}

/*右侧客服*/
.demo-icon {
    display: inline-block;
    text-align: center;
    text-transform: none;
}

.demo-icon-sev2 {
    width: 48px;
    height: 48px;
    background: url(../images/icon-sev2.png) no-repeat;
}

.demo-icon-contact2 {
    width: 48px;
    height: 48px;
    background: url(../images/icon-contact2.png) no-repeat;
}

.cndns-right {
    position: fixed;
    right: 1px;
    top: 50%;
    /*margin-top: -100px;*/
    z-index: 100
}

.cndns-right-meau {
    position: relative;
}

.cndns-right-btn {
    width: 48px;
    height: 48px;
    border: 1px solid #ddd;
    text-align: center;
    display: block;
    margin-bottom: 6px;
    position: relative;
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
}

.cndns-right-btn p {
    background: #ffffff;
    color: #ff6800;
    font-size: 14px;
    line-height: 18px;
    padding-top: 5px;
    display: none;
}

.meau-sev .cndns-right-btn {
    border-color: #ff6800;
    background-color: #ff6800;
    background-image: url(../images/zxkf.gif);
}

.meau-contact .cndns-right-btn {
    background-image: url(../images/icon-contact.png);
}

.meau-code .cndns-right-btn {
    background-image: url(../images/icon-code.png);
}

.meau-top .cndns-right-btn {
    background-image: url(../images/icon-top.png);
}

.meau-sev .cndns-right-btn p {
    background: #ff6800;
    color: #fff
}

.cndns-right-box {
    position: absolute;
    top: -15px;
    right: 48px;
    padding-right: 25px;
    display: none;
}

.cndns-right-box .box-border {
    border: 1px solid #ccc;
    border-top: 4px solid #ff6800;
    padding: 20px;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .15);
    -moz-box-shadow: 0 3px 8px rgba(0, 0, 0, .15);
    box-shadow: 0 3px 8px rgba(0, 0, 0, .15);
    position: relative
}

.cndns-right-box .box-border .arrow-right {
    display: block;
    width: 13px;
    height: 16px;
    background: url(../images/arrow.png) no-repeat;
    position: absolute;
    right: -13px;
    top: 26px;
}

.cndns-right-box .box-border .sev-t span {
    font-size: 42px;
    float: left;
    display: block;
    line-height: 56px;
    margin-right: 20px;
    color: #d3d3d3
}

.cndns-right-box .box-border .sev-t p {
    float: left;
    color: #ff6800;
    font-size: 24px;
    line-height: 28px;
}

.cndns-right-box .box-border .sev-t p i {
    display: block;
    font-size: 14px;
    color: #aaa;
    font-style: initial;
}

.cndns-right-box .box-border .sev-b {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #e4e4e4
}

.cndns-right-box .box-border .sev-b h4 {
    color: #666;
    font-size: 14px;
    font-weight: normal;
    padding-bottom: 15px;
}

.cndns-right-box .box-border .sev-b li {
    float: left;
    width: 33.33333%
}

.cndns-right-box .box-border .sev-b li a {
    display: inline-block;
    color: #999;
    font-size: 13px;
    padding-left: 43px;
    background: url(../images/qq.gif) no-repeat left 3px;
    line-height: 36px;
}

.meau-sev .cndns-right-box .box-border {
    width: 430px;
}

.meau-contact .cndns-right-box .box-border {
    width: 265px;
}

.meau-code .cndns-right-box {
    top: inherit;
    bottom: -35px;
}

.meau-code .cndns-right-box .box-border {
    width: 156px;
    text-align: center;
    border-top: 1px solid #ccc;
}

.meau-code .cndns-right-box .box-border .sev-t p {
    width: 100%;
    display: block;
    color: #f66e06;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    margin-top: 12px;
}

.meau-code .cndns-right-box .sev-t {
    text-emphasis: #ce8483;
}

.meau-code .cndns-right-box .box-border .arrow-right {
    top: inherit;
    bottom: 50px;
}

/* 404页面 */
.notfound-section{
    padding: 100px 0;
}
.notfound-section .s-box-main{
    width: 1000px;
    margin: 0 auto;
    padding: 50px 0;
    border: 1px solid #ccc;
    font-size: 22px;
}
.notfound-section .s-box-main .s-box-left{
    margin-left: 100px;
}
.notfound-section .s-box-main img{
    display: block;
    margin: 0 auto;
    max-width: 100%;
}
.notfound-section .s-box-main .s-box-center{
    margin: 0 50px;
}
.notfound-section .s-box-main .s-box-right{
   padding: 90px 0;
   width: 450px;
}
.notfound-section .s-box-main .s-box-right .s-text-red{
    font-size: 100px;
    color: #db212d;
    /* margin-bottom: 30px; */
    line-height: 1;
    margin-right: 15px;
    display: inline-block;
}
.notfound-section .s-box-main .s-box-right .s-text-gray{
    display: inline-block;
}
.notfound-section .s-box-main .s-box-right .s-text-big{
    font-size: 48px;
    /* line-height: 1; */
}
.notfound-section .s-box-main .s-box-right .s-top{
    margin-bottom: 30px;
}

.s-wine-detail-main img{
    max-width: 100%;
    display: block;
    margin: 0 auto;
}
.ten-areas{
    display: flex;
    flex-wrap: wrap;
}
.ten-areas .area-li{
width: 19%;
margin-right: 10px
}
.ten-areas .area-li .s-img-box{
    margin-bottom: 10px
}
.ten-areas .area-li img{
    width: 100%
}
.ten-areas .area-li:last-child{
margin-right: 0px
}