/**通用**/
input{
    tap-highlight-color:rgba(0,0,0,0);
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}

a:focus,a:active,a:visited{
    outline: none!important;
}

/**防止选择input历史时出现灰色背景**/
input:-webkit-autofill,

input:-webkit-autofill:hover,

input:-webkit-autofill:focus,

input:-webkit-autofill:active {
    -webkit-transition-delay: 99999s;
    -webkit-transition: color 99999s ease-out, background-color 99999s ease-out;

}

/*谷歌：-webkit-
Firefox：-moz-
opera： -o-
IE>9： -ms-*/

/*分页*/
#page{}

.page1 {
    padding: 50px 0 20px;
    text-align: center;
}

.spage-total {
    display: inline-block;
    margin-right: 20px;
    line-height: 35px;
    color: #666;
    font-size:.875rem;
}

.spage-number {
    display: inline-block;
    color: #666;
    font-size:.875rem;
}

.spage-number span {
    position: relative;
    box-sizing: border-box;
    display: inline-block;
    margin-left: -1px;
    padding: 0 14px;
    line-height: 33px;
    border: 1px solid #ddd;
    text-align: center;
    transition: all .2s;
    cursor: pointer;
}

.spage-number span.active {
    background: #cdb05d;
    color: #fff;
    border-color: #cdb05d;
    z-index: 3;
}

.spage-number span.active:hover {
    background: #cdb05d;
    color: #fff;
    border-color: #cdb05d;
    z-index: 3;
}

.spage-number span:hover {
    background-color: #eee;
}

.spage-number span.span-disabled {
    cursor: not-allowed;
    color: #ccc;
}

.spage-skip {
    display: inline-block;
    margin-left: 20px;
    line-height: 35px;
    color: #666;
    font-size:.875rem;
}

.spage-skip input {
    box-sizing: border-box;
    display: inline-block;
    width: 45px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    vertical-align: top;
    border: 1px solid #ddd;
    outline: none;
    transition: all .2s;
}

.spage-skip input:focus {
    border-color: #cdb05d;
}

.spage-skip span {
    display: inline-block;
    padding: 0 14px;
    line-height: 33px;
    vertical-align: top;
    color: #666;
    outline: none;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: all .2s;
}

.spage-skip span:hover {
    background: #cdb05d;
    color: #fff;
    border: 1px solid #cdb05d;
}

/*重置*/
.set-color{}

.set-color .spage-number span.active {
    background: #cdb05d;
    color: #fff;
    border-color: #cdb05d;
    z-index: 3;
}

.set-color .spage-number span.active:hover {
    background: #cdb05d;
    color: #fff;
    border-color: #cdb05d;
    z-index: 3;
}

.set-color .spage-skip input:focus {
    border-color: #cdb05d;
}

.set-color .spage-skip span:hover {
    background: #cdb05d;
    color: #fff;
    border: 1px solid #cdb05d;
}


/**登录**/
.cbx-login{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.cbx-login-top{
    flex: 1;
    min-width: 0;
    background: #cdb05d;
}

.cbx-login-bot{
    flex: 1;
    min-width: 0;
    background: #fcf9f9;
}

.cbx-login .vjc-vac.abs{
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cbx-login-main{
    width: 860px;
    padding: 35px 0;
    display: flex;
    box-shadow: 0 5px 8px 0 rgba(230,230,230,0.1),/**下边**/
    0 -5px 8px 0 rgba(230,230,230,0.1),/**上边**/
    5px 0 8px 0 rgba(230,230,230,0.1),/**右边**/
    -5px 0 8px 0 rgba(230,230,230,0.1)/**左边**/
}

.cbx-login-main-change{
    width: 650px;
    padding: 35px 0;
    display: flex;
    box-shadow: 0 5px 8px 0 rgba(230,230,230,0.1),/**下边**/
    0 -5px 8px 0 rgba(230,230,230,0.1),/**上边**/
    5px 0 8px 0 rgba(230,230,230,0.1),/**右边**/
    -5px 0 8px 0 rgba(230,230,230,0.1)/**左边**/
}


.cbx-login-main-l{
    flex: 1;
    min-width: 0;
}

.cbx-login-item{
    margin-bottom: 13px;
}

.cbx-login-item a{
    font-size: 18px;
    color: #666;
    position: relative;
    padding-bottom: 18px;
    float: left;
    display: inline-block;
}

.cbx-login-item a:first-child{
    margin-right: 85px;
}

.cbx-login-item a:last-child{
    margin-left: 85px;
}

.cbx-login-item a.active{
    color: #cdb05d;
    font-weight: bold;
}

.cbx-login-item a.active:after{
    position: absolute;
    content: "";
    width: 70%;
    height: 3px;
    background: #cdb05d;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -o-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
}

.cbx-login-form{
    display: flex;
    border-bottom: solid 1px #e6e6e6;
}

.cbx-login-form img{
    flex: none;
    margin: 0 6px 0 5px;
}

.cbx-login-form input[type="text"],.cbx-login-form input[type="password"],.cbx-login-form input[type="number"]{
    flex: 1;
    min-width: 0;
    width: 100%;
    display: inline-block;
    font-size: 14px;
    color: #333;
    border: none;
    padding: 22px 6px;
    -webkit-appearance: none!important;
    outline: none!important;
    box-shadow: none!important;
}

.cbx-login-form input::-webkit-input-placeholder {
    color: #333;
}
.cbx-login-form input::-moz-input-placeholder {
    color: #333;
}
.cbx-login-form input::-ms-input-placeholder {
    color: #333;
}
.cbx-login-form input::-o-input-placeholder {
    color: #333;
}


.cbx-login-form-imp input::-webkit-input-placeholder {
    color: #ccc!important;
}
.cbx-login-form-imp input::-moz-input-placeholder {
    color: #ccc!important;
}
.cbx-login-form-imp input::-ms-input-placeholder {
    color: #ccc!important;
}
.cbx-login-form-imp input::-o-input-placeholder {
    color: #ccc!important;
}

.cbx-login-form input[type="button"]{
    flex: none;
    border: none;
    -webkit-appearance: none;
    background: #cdb05d;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    padding: 7px 10px;
    cursor: pointer;
    margin-left: 15px;
}

.cbx-login-form select{
    flex: 1;
    min-width: 0;
    width: 100%;
    border: none;
    -webkit-appearance: none;
    color: #333;
    font-size: 14px;
    padding: 21px 6px;
    cursor: pointer;
    box-shadow: none;
    outline: none;
}

.cbx-login-form span{
    flex: none;
    font-size: 14px;
    color: #333;
    margin-right: 24px;
}

.cbx-login-main-r{
    padding-left: 94px;
    width: 276px;
    flex: none;
    border-left: dashed 1px #dadada;
}

.cbx-login-main-r a{
    background: url("../images/go.png") no-repeat right center;
    background-size: 18px 8px;
    padding-right: 27px;
}

.pro{
    display: none;
}


/**通用**/
.super-menu{
    height: 70px;
    background: #292a2f;
}
.super-menu-mid{
    width: 1000px;
    height: 100%;
    margin: 0 auto;
}
.menu{
    margin-left: 50px;
}
.menu-item{
    display: inline-block;
    float: left;
    margin-right: 20px;
    position: relative;
    cursor: pointer;
}

.parent-a{
    line-height: 70px;
    position: relative;
    cursor: pointer;
}

.menu-item.active:after{
    position: absolute;
    content: "";
    width: 112%;
    height: 3px;
    background: #cdb05d;
    left: -6%;
    bottom: 10px;
}

.menu-item:last-child{
    margin-right: 0;
}

.parent-a{
    font-size: 14px;
    color: #fff;
    font-weight: bold;
}

.child-list{
    display: none;
    position: absolute;
    top: 100%;
    left: -40%;
    width: 180%;
    z-index: 2;
    padding: 0 5px 7px;
    text-align: center;
    background: #292a2f;
}

.child-list a{
    color: #fff;
    font-size: 14px;
    display: block;
    padding: 5px 0;
}

.child-list a:hover{
    background: #3a4c34;
}

.btn-login,.btn-register,.btn-out{

    border-radius: 9999px;
    font-size: 14px;
    font-weight: bold;
    padding: 7px 22px;
}

.btn-login{
    color: #fff;
    background: #cdb05d;
    margin-left: 14px;
    border: solid 2px #cdb05d;
}

.btn-register{
    color: #cdb05d;
    background: #292a2f;
    margin-left: 14px;
    border: solid 2px #cdb05d;
}

.btn-out{
    color: #fff;
    background: #666;
    margin-left: 14px;
    border: solid 2px #666;
}

.banner{
    height: 180px;
    position: relative;
    overflow: hidden;
}

.banner img{
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}


.center-middle{
    min-height: calc(100% - 349px);/*90+180+12+55+12*/
    margin-top: 12px;
}

.center-middle-m{
    width: 1200px;
    margin: 0 auto;
    border-radius: 3px;
    display: flex;
}

.center-mid-left{
    flex: 1;
    min-width: 0;
    padding: 18px 25px;
}


.news-l-item{}

.news-l-item a{
    font-size: 16px;
    color: #666;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    margin-right: 30px;
}

.news-l-item a.active{
    background: #cdb05d;
    color: #fff;
}

.news-l-con{

}

.news-l-det{

}

.news-l-det .news-l-det-c{
    width: 100%;
    float: left;
    display: flex;
    margin-top: 26px;
}

.news-l-det img{
    flex: none;
    margin-right: 27px;
}

.news-l-det-con{
    flex: 1;
    min-width: 0;
}

.news-l-det-con div{
    width: 100%;
    float: left;
}

.news-l-det-con-tit{
    display: flex;
}

.news-l-det-con-tit span{
    flex: none;
}

.news-l-det-con-tit div{
    flex: 1;
    min-width: 0;
    margin: 0 14px;
}

.news-l-det-con-tit span:first-child{
    color: #cdb05d;
    border: solid 1px #cdb05d;
    padding: 2px 10px;
    border-radius: 9999px;
}

.news-l-det-con .g3{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 24px;
}







.center-mid-right{
    flex: none;
    width: 330px;
}

.news-r-item{}

.news-r-item a{
    font-size: 14px;
    color: #000;
    display: inline-block;
    line-height: 50px;
    position: relative;
}

.news-r-item a.active:after{
    position: absolute;
    content:"";
    left: 25%;
    bottom: 2px;
    height: 3px;
    width: 50%;
    background: #cdb05d;
}


.news-form{
    display: flex;
}

.news-form input[type="text"],.news-form input[type="password"],.news-form input[type="number"]{
    min-width: 0;
    flex: 1;
    display: inline-block;
    font-size: 14px;
    color: #333;
    border: none;
    border-radius: 4px;
    padding: 13px 15px;
    -webkit-appearance: none!important;
    outline: none!important;
    box-shadow: none!important;
    background: #f6f6f6;
}

.news-form input::-webkit-input-placeholder {
    color: #999;
}
.news-form input::-moz-input-placeholder {
    color: #999;
}
.news-form input::-ms-input-placeholder {
    color: #999;
}
.news-form input::-o-input-placeholder {
    color: #999;
}

.news-form select{
    flex: 1;
    min-width: 0;
    border: none;
    -webkit-appearance: none;
    color: #999;
    font-size: 14px;
    padding: 12px 43px 12px 15px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: none;
    outline: none;
    background: url("../images/select-bg.png") no-repeat  right 17px center #f6f6f6;
}

.news-form a.gf-imp{
    border-radius: 4px;
    padding: 10px 65px;
    background: #cdb05d;
}

.news-r-cons{}

.news-r-con{}

.news-tip{
    display: flex;
}

.news-tip span{
    flex: 1;
    min-width: 0;
}

.news-tip a{
    flex: none;
    color: #f2280d;
}

.news-det-tit{
    display: flex;
}

.news-det-tit >div{
    flex: 1;
    min-width: 0;
}

.news-det-tit a{
    margin-left: 25px;
    flex: none;
    min-width: 32px;
    text-align: center;
    background: url("../images/sc.png") no-repeat top center;
    background-size: 32px 32px;
    padding-top: 40px;
}

.news-det-tit a.active{
    background: url("../images/sc-active.png") no-repeat top center;
    background-size: 32px 32px;
}

.news-det-tit a.active1{
    background: url("../images/sc-active1.png") no-repeat top center;
    background-size: 32px 32px;
}

.news-det-tit .m-r-14{
    color: #cdb05d;
    border: solid 1px #cdb05d;
    padding: 2px 10px;
    border-radius: 9999px;
}

.news-det-con{
    margin: 20px 0;
    line-height: 40px;
    text-indent: 2em;
}

.news-det-con img {
    max-width: 100%;
}

.my-a-item{}
.my-a-item a.fl{
    margin-right: 33px;
    font-size: 14px;
    color: #000;
    position: relative;
    padding-bottom: 25px;
}

.my-a-item a.fl.active:after{
    position: absolute;
    content: "";
    width: 28px;
    height: 3px;
    bottom: 10px;
    left: 50%;
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -o-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
    background: #cdb05d;
}

.my-a-item a.fr{
    display: inline-block;
    width: 20px;
    height: 16px;
    background: url("../images/f5.png") no-repeat center center;
    background-size: 20px 16px;
}

.my-a-con{}

.my-a-con li{
    width: 100%;
    float: left;
    padding: 20px;
    background: #fcf9f9;
    margin-top: 13px;
    font-size: 14px;
    color: #999;
}

.my-a-con div{
    width: 100%;
    float: left;
    margin-top: 8px;
}

.my-a-con div:first-child{
    margin-top: 0;
}

.my-a-con span{
    color: #000;
}

.my-a-con select{
    border: none;
    -webkit-appearance: none;
    color: #000;
    font-size: 14px;
    cursor: pointer;
    box-shadow: none;
    outline: none;
    background: url("../images/select-green.png") no-repeat right center;
    background-size: 9px 6px;
    padding-right: 17px;
}

.task-top{
    padding: 40px;
}

.task-top-item{
    width: 100%;
    float: left;
    display: flex;
    margin-top: 18px;
}

.task-top-item:first-child{
    margin-top: 0;
}

.task-top-item div{
    flex: 1;
    min-width: 0;
}


.my-t-con{}

.my-t-con li{
    width: 100%;
    float: left;
    padding: 20px;
    background: #fcf9f9;
    margin-top: 13px;
    font-size: 14px;
    color: #999;
    display: flex;
}

.my-t-con li div.z:nth-child(1){
    flex: none;
}

.my-t-con li div.z:nth-child(2){
    flex: 1;
    min-width: 0;
    text-align: center;
}

.my-t-con li div.z:nth-child(3){
    flex: none;
}

.my-t-con select{
    border: none;
    -webkit-appearance: none;
    color: #000;
    font-size: 14px;
    cursor: pointer;
    box-shadow: none;
    outline: none;
    background: url("../images/select-green.png") no-repeat right center;
    background-size: 9px 6px;
    padding-right: 17px;
}

/*任务管理-上传结果*/
.t-up{
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    background: rgba(0,0,0,.5);
    display: none;
}
.t-upload{
    width: 100%;
    height: 100%;
}
.t-upload-m{
    width: 600px;
    padding: 0 60px;
    background: #fff;
}

.t-upload-m-1{
    width: 420px!important;
    padding: 0 30px!important;
}

.t-upload-m-sp{
    padding: 0!important;
    width: 414px!important;
    height: 736px!important;
}

.t-upload-m-sp iframe{
    width: 414px!important;
    height: 736px!important;
}

.t-upload-m div{
    width: 100%;
    float: left;
}

.t-upload-m-form{
    display: flex;
}

.t-upload-m-form span.g0 {
    flex: none;
}

.t-upload-m-form input[type="text"] {
    flex: 1;
    min-width: 0;
    margin: 0 15px;
    font-size: 14px;
    color: #000;
    border: solid 1px #e6e6e6;
    padding: 11px 6px;
    border-radius: 5px;
    -webkit-appearance: none!important;
    outline: none!important;
    box-shadow: none!important;

}

.t-upload-m-form a{
    flex: none;
}

.t-upload-m-form .f-btn {
    position: relative;
    /*background: rgb(244,255,251);
    border: 1px solid #00D6A3;
    border-radius: 4px;
    padding: 4px 12px;*/
    overflow: hidden;
    color: #000;
    font-size: 14px;
    text-decoration: none;
    line-height: 20px;
    cursor: pointer;
}
.t-upload-m-form .f-btn input[type="file"] {
    position: absolute;
    font-size: 100px;
    right: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
}

.t-upload-m-btn{
    padding: 50px 0;
    text-align: center;
}

.t-upload-m-btn a{
    display: inline-block;
    font-size: 14px;
    color: #fff;
    width: 160px;
    padding: 11px 0;
    background: #cdb05d;
    border-radius: 5px;
    text-align: center;
}


.t-upload-m-btn-n{
    padding: 25px 0 30px;
    text-align: center;
}

.t-upload-m-btn-n a{
    display: inline-block;
    font-size: 14px;
    color: #fff;
    width: 45%;
    padding: 11px 0;
    background: #cdb05d;
    border-radius: 5px;
    text-align: center;
}


.bot-info{
    height: 106px;
}
.bot-info a{
    color: #666;
}

/**new begin**/

/**首页**/
.cbx-index-banner{
    width:100%;
}

.cbx-index-banner div.abs img{
    margin-right: 40px;
}

.cbx-index-banner div.abs{
    width: 1200px;
    left: 50%;
    margin-left: -600px;
    top: 28px;
}

.cbx-index-banner div.abs a{
    float: left;
    font-size: 16px;
    color: #fff;
    margin-right: 33px;
}

.cbx-index-banner div.abs a.active{
    font-weight: bold;
    position: relative;
}

.cbx-index-banner div.abs a.active:after{
    position: absolute;
    content: "";
    height: 2px;
    width: 100%;
    background: #cdb05d;
    left: 0;
    top: 44px;
}

.cbx-index-banner div.abs div{
    float: right;
}

.cbx-index-banner div.abs div a{
    margin-right: 0;
    margin-left: 24px;
    color: #fff;
}

.cbx-index-about{
    background: #fff;
    padding: 45px 0 100px;
}

.cbx-index-about-mid{
    width: 1200px;
    margin: 0 auto;
}

.about-mid-1 span:first-child{
    position: relative;
    line-height: 100px;
}

.about-mid-1 span:first-child:after{
    position: absolute;
    content: "";
    height: 3px;
    width: 60%;
    left: 50%;
    margin-left: -30%;
    top: 59px;
    background: #cdb05d;
}

.about-mid-2{
    padding: 64px 150px;
    line-height: 28px;
    text-indent: 2em;
    text-align: justify;
}

.about-mid-3{
    display: flex;
}

.about-mid-3 li{
    flex: 1;
    min-width: 0;
    text-align: center;
}

.about-mid-3 img{
    width: 132px;
    height: 132px;
}

.about-mid-3 span{
    display: block;
    font-size: 18px;
    color: #000;
    padding-top: 30px;
}

.about-mid-3 i{
    font-style: normal;
    color: #cdb05d;
}

.cbx-index-news{
    background: #f7f7f7;
    padding: 45px 0 100px;
}

.about-mid-4{
    display: flex;
    padding-top: 40px;
}

.about-mid-4-left,.about-mid-4-right{
    flex: 1;
    min-width: 0;
}

.about-mid-4-left img{
    width: 100%;
    height: auto;
}

.about-mid-4-left div.abs{
    left: 0;
    top: 0;
    background: #cdb05d;
    padding: 5px 17px 14px;
}

.about-mid-4-right{
    margin-left: 60px;
}

.about-mid-4-right li{
    position: relative;
    margin-bottom: 101px;
    padding-left: 108px;
    width: 100%;
    float: left;
}

.about-mid-4-right li:last-child{
    margin-bottom: 0;
}

.about-mid-4-right li div.abs{
    left: 0;
    top: -18px;
    color: #333;
    padding: 0 17px 14px 0;
}

.about-mid-4-right li:hover div{
    color: #cdb05d!important;
}

.cbx-index-contact{
    background: #fff;
    padding: 45px 0 100px;
}

.contact-left{
    flex: 1;
    min-width: 0;
}

.contact-left li{
    display: flex;
    margin-bottom: 56px;
}

.contact-left li:last-child{
    margin-bottom: 0;
}

.contact-left .con-l{
    flex: none;
    width: 104px;
}

.contact-left .con-r{
    flex: 1;
    min-width: 0;
    padding-left: 40px;
    border-left: solid 1px #e6e6e6;
}

.contact-left .con-r div{
    width: 100%;
    float: left;
}

.contact-right{
    flex: none;
    width: 570px;
    height: 300px;
}

.cbx-bottom{
    margin-top: 12px;
    padding: 18px 0;
    background: #333;
}

.cbx-bottom > a {
    color: unset;
}

/*去掉高德地图版本号logo*/
.amap-logo{
    display: none!important;
}
.amap-copyright {
    opacity:0!important;
}

.a-menu{
    height: 90px;
}

.a-menu div.abs img{
    margin-right: 40px;
}

.a-menu div.abs{
    width: 1200px;
    left: 50%;
    margin-left: -600px;
    top: 24px;
    z-index: 1;
}

.a-menu div.abs a{
    float: left;
    font-size: 16px;
    color: #000;
    margin-right: 33px;
    padding-top: 10px;
    padding-bottom: 54px;
}

.a-menu div.abs a.active{
    font-weight: bold;
    position: relative;
    color: #cdb05d;
}

.a-menu div.abs a.active:after{
    position: absolute;
    content: "";
    height: 2px;
    width: 100%;
    background: #cdb05d;
    left: 0;
    top: 64px;
}

.a-menu div.abs div{
    float: right;
}

.a-menu div.abs div a{
    margin-right: 0;
    margin-left: 24px;
    color: #333;
}

.about-con{
    padding-bottom: 127px;
}

.about-con-mid{
    width: 1200px;
    margin: 0 auto;
}

.a-sp{
    padding: 50px 0 42px;
}

.a-sp span:after{
    position: absolute;
    content: "";
    height: 3px;
    width: 60%;
    left: 50%;
    margin-left: -30%;
    top: -19px;
    background: #cdb05d;
}

.a-con{
    display: flex;
}

.a-con-l{
    flex: none;
    width: 440px;
    margin-right: 60px;
}

.a-con-l div{
    position: absolute;
    left: 0;
    top: 0;
    width: 440px;
    height: 290px;
    z-index: 1;
    background: #f2f2f2;
}

.a-con-l img{
    position: absolute;
    left: 30px;
    top: 30px;
    z-index: 2;
}

.a-con-r{
    flex: 1;
    min-width: 0;
}

.a-con-r p{
    text-align: justify;
    text-indent: 2em;
    line-height: 30px;
}

.crumbs{
    height: 75px;
    width: 100%;
    float: left;
}

.crumbs div{
    width: 1200px;
    left: 50%;
    margin-left: -600px;
    z-index: 1;
}

.a-con table{
    font-size: 14px;
    color: #000;

    border-right: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    border-collapse: collapse;
}

.a-con table tr{
    width: 100%;
    float: left;
}

.a-con table td{
    float: left;
    padding: 14px 24px;
    border-left: 1px solid #e6e6e6;
    border-top: 1px solid #e6e6e6;
}

.a-con table td:first-child{
    background: #fafafa;
    width: 30.8%;
}
.a-con table td:last-child{
    width: 69.2%;
}

.a-con table a{
    color: #000!important;
    text-decoration: underline;
}

.goods-con{
    padding-bottom: 50px;
}

.goods-con-mid{
    width: 1200px;
    margin: 0 auto;
}

.goods-c-item a{
    display: inline-block;
    color: #000;
    font-size: 24px;
    padding: 60px 55px;
    position: relative;
}

.goods-c-item a.active:after{
    position: absolute;
    content: "";
    height: 3px;
    width: 30px;
    left: 50%;
    margin-left: -15px;
    top: 112px;
    background: #cdb05d;
}

.goods-c-con{}

.goods-c-con1{
}

.goods-a{
    text-align: center;
    padding: 50px 0 65px;
}

.goods-a a{
    border: solid 2px #cdb05d;
    display: inline-block;
    color: #cdb05d;
    font-weight: bold;
    font-size: 16px;
    padding: 10px 38px;
    background: #fff;
}

.goods-a a:hover{
    background: #cdb05d;
    color: #fff;
}

.goods-c-list{}

.goods-c-list ul{
    width: 100%;
    float: left;
}

.goods-c-list li{
    width: 280px;
    float: left;
    margin-right: 26.66px;
    margin-bottom: 20px;
    cursor: pointer;
}

.goods-c-list li:nth-child(4n){
    margin-right: 0;
}

.goods-c-list li img{
    width: 280px;
    height: 210px;
    float: left;
}

.goods-c-list li div.con{
    width: 100%;
    float: left;
    position: relative;
}

.goods-c-list li div.con div{
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    background: rgba(0,0,0,.5);
}

.goods-c-list li div.txt{
    width: 100%;
    float: left;
    text-align: center;
    font-size: 14px;
    color: #333;
    padding: 15px 0;
    line-height: 26px;
}

/**new end**/

.swip{
    width: 100%;
    margin-bottom: 60px;
}
.swip img{
    width: 100%;
}