﻿html {
    --color: #0DA921;
    --color-active:#BA4A4A;
    --font-family: 'Arial';
}

a:hover {
    color: var(--color);
}


.w1400 {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.w1250 {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}

.w1200 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.w1000 {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.flex-x {
    display: flex;
    flex-direction: row;
}

.flex-y {
    display: flex;
    flex-direction: column;
}

.flex-align {
    justify-content: space-between;
    align-items: center;
}
.flex-end {
    justify-content: flex-end;
    align-items: center;
}


button {
    cursor: pointer;
}
.text-center {
    text-align: center;
}
.color1{
    color: var(--color);

}
.color2{
    color: var(--color-active);
}
.bg-color1{
    background: var(--color);

}
.bg-color2{
    background: var(--color-active);
}

/* p,
a {
    font-size: initial;
} */
 body{
    /* background: url("../images/bg.jpg") repeat-y top center; */
	background:#D0E8C4;
    background-size: 100% auto;
 }


.header {
    width: 100%;
    height: 55px;
    line-height: 55px;
    font-size: 16px;
    background: var(--color);
    color: #fff;
    /* position: fixed;
    top: 0; 
    left: 0;
    z-index: 100; */
  
}
.header .w1200{
    height: 55px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.header .nav {
    display: flex;
    flex-direction: row;
    height: 55px;
    line-height: 55px;
    gap: 30px;
}
.header .nav a {
    color: #fff;
    display: inline-block;
    height: 100%;
    position: relative;
}
.header .nav a::before{
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: #C0DA5F;
    transition: transform 0.3s;
    display: none;
}
.header .nav a:hover::before{
    display: block;
}
.header .right{
    display: flex;
    flex-direction: row;
}
.header .right a{
    color: #fff;
}
.header .right .not-login{
    margin-left: 15px;
}
.header .login-btn{
    font-size: 14px;
    padding: 5px 15px;
    border-radius: 30px;
    border: 1px solid #fff;
   
}
.header .right .is-login{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 35px;
    margin-left: 35px;
}
.header2{
    height: 110px;
    line-height: 110px;
    background: var(--color);
}

.header2 .w1200 {
    height: 110px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    
}
.header2 .logo a{
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}
.header2 .logo img{
	height:50px;
	object-fit:contain;
}
.header2 .nav{
    gap: 30px;
    margin: 0 50px 0 30px;
}
.header2 .nav a{
    display: inline-block;
    color: #fff;
    height: 100%;
    font-size: 16px;
    position: relative;
}
.header2 .nav a::before{
    content: '';
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: #C0DA5F;
    transition: transform 0.3s;
    display: none;
}
.header2 .nav a:hover::before{
    display: block;
}
.header2 .right a{
    color: #fff;
}
.header2 .right .not-login{
    margin-left: 15px;
}
.header2 .right .is-login {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-left: 20px;
}
.header2 .login-btn {
    font-size: 14px;
    padding: 5px 15px;
    border-radius: 30px;
    border: 1px solid #fff;
}


/* 登录页面 */
.login-page{
    padding: 40px 0;
}
.login-page .w1200{
    padding: 20px 20px 40px;
    background: #fff;
    border-radius: 10px;
}
.login-page .nav{
    justify-content: center;
    align-items: center;
    gap: 50px;
   
    border-bottom: 1px solid #eee;
}
.login-page .nav li{
    font-size: 20px ;
    padding: 30px 0 27px;
    color: #000;
    font-weight: bold;
    border-bottom: 3px solid transparent;
    cursor: pointer;
}
.login-page .nav li.active{
    border-bottom: 3px solid var(--color);

}
.login-page .forms{
    width: 360px;
    padding: 50px 0;
    margin:  0 auto;
}
.login-page .forms li{
    display: none;
}
.login-page .forms li:first-child{
    display: block;
}
.login-page .forms .form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.login-page .forms .form label{
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    height: 50px;
    line-height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}
.login-page .forms .form label i{
    padding: 0 20px;
    color: #ccc;
    font-size: 24px;
    position: relative;
}
.login-page .forms .form label i::after{
    content: '';
    width: 1px;
    height: 20px;
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    background: #ccc;
}

.login-page .forms .form label input{
    width: 100%;
    height: 100%;
    padding: 0 20px;
    color: #333;
    font-size: 14px;
}
.login-page .forms .form label input::placeholder{
    color: #CCC;
    font-size: 14px;
}
.login-page .forms .form label .yzm-img {
    width: 70px;
    height: 100%;
    padding: 4px 5px;
    border-radius: 8px;
    object-fit: cover;
}
.login-page .forms .login-btn{
    display: inline-block;
    height: 48px;
    line-height: 48px;
    width: 100%;
    text-align: center;
    border-radius: 5px;
    color: #fff;
    background: var(--color);
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
}
.login-page .forms .tip {
    padding: 20px 0;
    font-size: 16px;
    color: #000;
}
.login-page .forms .tip a{
    color: var(--color);
}
.login-page .forms .checkbox-w {
    align-items:flex-start;
    line-height: 18px;

}
.login-page .forms .checkbox-w input[type="checkbox"] {
    /* margin-top: 2px; */
    margin-right: 5px;
    width: 18px;
    height: 18px;
}
.login-page .forms .checkbox-w input[type="checkbox"]:checked+p {
   color: #000;
}
.login-page .forms .checkbox-w p {
    font-size: 16px;
    color: #999;
}
.login-page .forms .checkbox-w p a {
    color: #498426;
}

/* 注册页面 */

.register-page{
    padding: 40px 0;
  
}
.register-page .w1200{
    background: #fff;
    border-radius: 10px;
    padding: 40px;
}
.register-page .w1000{
    background: #fff;
    border-radius: 10px;
    padding: 40px;
}
.register-common-top{
    padding: 25px 0;
    border-bottom: 1px solid #Eee;
}
.register-common-top .l{
    font-size: 20px;
    font-weight: bold;
    color: #000;
    position: relative;
}
.register-common-top .l::after{
    content: '';
    display: inline-block;
    width: 40px;
    height: 4px;
    background: var(--color);
    border-radius: 3px;
   position: absolute;
   left: 0;
   bottom: -25px;
}
.register-common-top .r li{
    font-size: 14px;
    color: #999;
    display: flex;
    align-items: center;
}
.register-common-top .r li::after{
    content: '';
    display: inline-block;
    width: 40px;
   border: 1px dashed #eee;
    margin: 0 10px;
    transform: translateY(1px);
    font-size: 0;
}
.register-common-top .r li:last-child::after{
    display: none;
}
.register-common-top .r li span{
    font-size: 16px ;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background: transparent;
    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid #999;

}
.register-common-top .r li.active{
    color: var(--color);
}
.register-common-top .r li.active span{
    background: var(--color);
    color: #fff;
    border-color: var(--color);
}
.register-page .center{
    padding: 40px 0;
}
.register-page .center form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.register-page .center form .item{
    display: flex;
   align-items: center;
}
.register-page .center form label{
    display: flex;
    align-items: center;
}
.register-page .center form label p{
    font-size: 16px;
    color: #666;
    width: 96px;
}
.register-page .center form label i{
    color: #f00;
    margin-right: 3px;
}
.register-page .center form label input{
    width: 300px;
    height: 50px;
    line-height: 50px;
    border: 1px solid #eee;
    padding: 0 10px ;
    border-radius: 6px;
}
.register-page .center form .item span{
    flex: 1;
    font-size: 14px;
    color: #999;
    padding-left: 15px;
}

.register-page .bottom{
    padding-top: 25px;
    border-top: 1px solid #eee;
}
.register-page .bottom p{
    font-size: 16px;
    color: #999;
}
.register-page .bottom p span{
    color: #FF0000;
}
.register-page .bottom .btns{
    display: flex;
    gap: 20px;
}
.register-page .bottom .btn{
    display: inline-block;
    font-size: 16px;
    height: 46px;
    line-height: 46px;
    color: #fff;
    background: var(--color);
    padding: 0 30px ;
    border-radius: 10px;
}
.register-page .bottom .btn.cancel{
    background: #999;
    padding: 0 15px;
}
.register-protocol-page .bottom label{
    font-size: 14px;
    color: #999;
    display: flex;
    align-items: center;
}
.register-protocol-page .bottom label input[type="checkbox"]{
    margin-right: 10px;
    width: 20px;
    height: 20px;
    border-radius: 5px;
}
.register-protocol-page .editor{
    font-size: 16px;
    line-height: 36px;
    color: #666;
}
.register-protocol-page .editor p{
    font-size: 16px;
    line-height: 36px;
    color: #666;
}
.register-protocol-page .editor h3{
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}



.register-profile-page .center{

}
.register-profile-page .center .item h2{
    width: 100%;
    height: 45px;
    line-height: 45px;
    padding:  0 20px;
    color: #fff;
    background: var(--color);
    border-radius: 10px;
    font-size: 16px;
}
.register-profile-page .center .item .profile-form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 25px 0;
}
.register-profile-page .center .item .profile-form>li{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    font-size: 16px;
    color: #666;
}
.register-profile-page .center .item .profile-form>li .li-item{
    display: flex;
    align-items: center;
    flex: 1;
}
.register-profile-page .center .item .profile-form>li input{
    width: 300px;
    height: 50px;
    line-height: 50px;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 0 10px;
    font-size: 16px;
    color: #666;
}
.register-profile-page .center .item .profile-form .l-text{
    width: 120px;
    text-align: right;
    font-size: 16px;
    color: #666;
    white-space: nowrap;
}
.register-profile-page .center .item .profile-form .text{
    font-size: 16px;
    color: #666;
    white-space: nowrap;
}
.register-profile-page .center .item .profile-form .r-text{
    margin:0 10px;
}
.register-profile-page .center .item .profile-form .r-text.color-999{
    color: #999;
}
.register-profile-page .center .item .profile-form>li .flex-align-start{
   align-items: flex-start;
}

.company-register-page .center .item .profile-form>li .my-checkbox-list{
    margin-top: 30px;
}
.company-register-page .center .item .profile-form>li .my-checkbox-list span{
    color: #000;
}
.company-register-page .center .item .profile-form>li .my-checkbox-list a{
    margin-left: 80px;
    color: #000;
    text-decoration: underline;
}
.company-register-page .bottom .btn{
    padding: 0 50px;
}
.company-register-page .dialog{
    position: fixed ;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
   display: none;
}
.company-register-page .dialog .w{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 60%;
    height: 80vh;
    border-radius: 10px;
    background: #F0F8ED;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.company-register-page .dialog .w h3{
    font-size: 24px;
    width: 100%;
    text-align: center;
    line-height: 2;
}
.company-register-page .dialog .w .editor{
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    flex: 1;
    overflow-y: auto;
}
.company-register-page .dialog .w .editor p{
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}
.company-register-page .dialog .btns{
    display: flex;
    width: 100%;
    justify-content:center;
    align-items: center;
    gap: 30px;
}
.company-register-page .dialog .btns .btn{
    width: 120px;
    height: 40px;
    border-radius: 10px;
    font-size: 18px;
    color: #fff;

}
.company-register-page .dialog .btns .btn.confirm{
    background: var(--color-active);
}
.company-register-page .dialog .btns .btn.cancel{
    background: #999;
}


.index-page{
    padding: 0 0 30px;
}
.index-page .common-title{
    font-size: 24px;
    font-weight: bold;
    color: var(--color);
    padding: 30px 0 20px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
   justify-content: space-between;
}
.index-page .common-title .more{
    font-size: 12px;
    color: #999;
}

.index-page1{
    padding: 20px 0;
}
.index-page1 .logo img{
	height:60px;
	object-fit:contain;
}
.index-page1 h4{
    font-size: 14px ;
    color: #000;
    text-align: right;
    margin-bottom: 15px;
}
.index-page1 .search .left{
    font-size: 28px ;
    color: var(--color);
    font-weight: bold;
}
.index-page1 .search .right{
    width: 60%;
    height: 45px;
    border-radius: 30px;
    border: 2px solid var(--color);
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #fff;
    padding-left: 10px;
}
.index-page1 .dropdowns{
    position: relative;
}
.index-page1 .dropdowns-info{
    cursor: pointer;
    padding: 0 10px ;
    font-size: 14px;
    color: #999;
}
.index-page1 .dropdowns::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 16px;
    transform: translateY(-50%);
    background: #ccc;
}
.index-page1 .dropdowns .iconfont{
    /* color: #999; */
    font-size: 12px;
    margin-left: 10px;
}
.index-page1 .dropdowns span{
    display: inline-block;
    height: 41px;
    line-height: 41px;
}
.index-page1 .dropdown-menu{
    display: none;
    position: absolute;
    top: 43px;
    left: 0px;
    background: #fff;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    line-height: 2;
    border-radius: 5px;
    z-index: 9;
}
.index-page1 .dropdown-menu li{
    cursor: pointer;
}
.index-page1 .search-input{
    padding:  0  20px;
    flex: 1;
    font-size: 14px;
    height: 100%;
}
.index-page1 .search .btn{
    padding: 0 25px 0 15px;
    margin-right: -1px;
    background: var(--color);
    color: #fff;
    height: 43px;
    line-height: 43px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}
.index-page2{
   width: 100%;
   border-radius: 20px ;
    overflow: hidden;
}
.index-page2>.left{
    width: 240px;
    color: #fff;
    padding: 20px;
    background: var(--color);
}
.index-page2>.left .title{
    font-size: 18px;
    font-weight: bold;
}
.index-page2>.left .title i{
    transform: rotate(-90deg);
    font-size: 12px;
}
.index-page2>.left .list1{
    margin: 30px 0 ;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.index-page2>.left .list1 li a{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.index-page2>.left .list1 li .left{
    width: 48px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}
.index-page2>.left .list1 li .left .xuhao{
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background: var(--color-active);
    font-size: 12px;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    color: #fff;
}
.index-page2>.left .list1 li .right{
    flex: 1;
    padding: 0 10px;
    color: #fff;
    overflow: hidden;
}
.index-page2>.left .list1 li .right h5{
    font-size: 14px;
   
}
.index-page2>.left .list1 li .right p{
    width: 100%;
    font-size: 12px;
   opacity: 0.6;
   overflow: hidden;
   white-space: nowrap;
   text-overflow: ellipsis;
}
.index-page2>.left .list2{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.index-page2>.left .list2 a{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.index-page2>.left .list2 a .left{
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
   
}
.index-page2>.left .list2 a .left .xuhao{
    background: #CEE8C5;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    color:var(--color);
    border-radius: 5px;
    margin-right: 10px;
    font-size: 12px;
}
.index-page2>.left .list2 a .left p{
    color: #fff;
    font-size: 12px;
}
.index-page2>.left .list2 a .right{
    width: 50px;
    font-size: 12px;
    color: #FFFF00;
}

.index-page2 .banner{
    flex: 1;
	height:410px;
    overflow: hidden;
}
.index-page2 .banner .swiper{
    height: 100%;
}
.index-page2 .banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index-page2>.right{
    width: 260px;
    background: #fff;
    padding: 30px 20px ;
}

.index-page2>.right .tabs li{
    color: #333;
    font-size: 16px;
    cursor: pointer;
    padding-bottom: 10px;
    border-bottom: 3px solid transparent;
}
.index-page2>.right .tabs li.active{
    border-bottom: 3px solid var(--color);
}

.index-page2>.right .forms{
    padding: 20px 0 0;
}
.index-page2>.right .forms li{
    display: none;

}
.index-page2>.right .forms li .form{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.index-page2>.right .forms li .form label{
    border: 1px solid #CCC;
    height: 40px;
    line-height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;

}
.index-page2>.right .forms li .form label i{
    padding: 0 10px;
    color: #ccc;
    font-size: 20px;
    position: relative;
}
.index-page2>.right .forms li .form label i::after{
    content: '';
    width: 1px;
    height: 20px;
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    background: #ccc;

}
.index-page2>.right .forms li .form label input{
    width: 100%;
    height: 100%;
    padding: 0 10px;
    color: #333;
    font-size: 12px;
}
.index-page2>.right .forms li .form label input::placeholder{
    color: #CCC;
    font-size: 12px;
}
.index-page2>.right .forms li .form label .yzm-img{
    width: 70px;
    height: 100%;
    padding: 4px 5px;
    border-radius: 8px;
    object-fit: cover;
}
.index-page2>.right .forms li:first-child{
    display: block;
}
.index-page2>.right .login-btn{
    display: inline-block;
    height: 36px;
    line-height: 36px;
    width: 100%;
    text-align: center;
    border-radius: 5px;
    color: #fff;
    background: var(--color);
    font-size: 14px;
    margin-top: 20px;
}
.index-page2>.right .tip{
    padding: 20px 0;
    font-size: 14px;
    color: #000;
}
.index-page2>.right .tip a{
    color: var(--color);
}
.index-page2>.right .checkbox-w{
    align-items: flex-start;
    line-height: 18px;
   
}
.index-page2>.right .checkbox-w input[type="checkbox"]{
    margin-top: 2px;
    margin-right: 5px;
}
.index-page2>.right .checkbox-w  input[type="checkbox"]:checked+p {
    color: #000;
 }
.index-page2>.right .checkbox-w p{
    font-size: 12px;
    color: #999;
}
.index-page2>.right .checkbox-w p a{
    color: #498426;
}



.index-page3 .img-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.index-page3 .img-list li{
    border-radius: 10px;
    overflow: hidden;
}
.index-page3 .img-list li img{
    width: 100%;
}
.index-page4 .list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.index-page4 .list a{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
   
}
.index-page4 .list li:hover a{
    box-shadow: 0 0 5px 3px rgba(60,60,60,0.1);
}
.index-page4 .list a p{
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}
.index-page4 .list a p:last-of-type{
    margin-bottom: 0;
}
.index-page4 .list a .name{
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
}
.index-page4 .list a .name .price{
    color: #666;
    font-size: 14px;
    margin-left: 25px;
}

.index-page5 .list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}
.index-page5 .list li a{
	width:100%;
	height:100%;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    flex-direction: row;
    gap: 20px;
    position: relative;
    overflow: hidden;
}
.index-page5 .list .left img{
    width: 100px;
    height:100%;
    object-fit: contain;
    border-radius: 10px;
}
.index-page5 .list .right{
    flex: 1;
    padding: 10px 0;
}
.index-page5 .list .name{
    font-size: 16px;
    color: #333;
    font-weight: bold;
}
.index-page5 .list .editor{
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
.index-page5 .list .editor p{
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}
.index-page5 .list .info-more{
    font-size: 14px;
    color: #999;
    display: flex;
    align-items: center;
}
.index-page5 .list .info-more::after{
    content: '';
    margin-left: 10px;
   display: inline-block;
   width: 40px;
   height: 1px;
   transform: translateY(1px);
   background: #999;
}
.index-page5 .list li:hover a{
   box-shadow: 0 0 5px 5px rgba(60,60,60,0.1);
}
.index-page5 .list .tip{
    font-size: 12px;
    color: #fff;
    background: var(--color-active);
    padding: 5px 10px;
    border-bottom-left-radius: 10px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}
.index-page5 .img-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
	  gap: 10px;
}
.index-page5 .img-list img{
    width: 100%;
    border-radius: 10px;
}

.index-page6 .list{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.index-page6 .list>li{
    padding: 20px 20px;
    position: relative;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
}
.index-page6 .list  .top{
    padding: 15px 0;
    border-bottom: 1px  solid #eee;
}
.index-page6 .list .top .name .l{
    font-size: 18px;
    color: #000;
    font-weight: bold;
} 
.index-page6 .list .top .name .r{
    font-size: 14px;
    color: var(--color-active);
}
.index-page6 .list .top span{
    font-size: 12px;
    color: #999;
    line-height: 2;
}
.index-page6 .list  .bottom{
    padding-top: 20px;
}
.index-page6 .list  .bottom .l{
    width: 40px;
    height: 40px;
    border-radius: 5px;
    overflow: hidden;
}
.index-page6 .list  .bottom .l img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index-page6 .list .bottom .r{
    flex: 1;
    padding-left: 15px;
    overflow: hidden;
}
.index-page6 .list .bottom .r h5{
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.index-page6 .list  .bottom .r h6{
    width: 100%;
    font-size: 12px;
    line-height: 1.4;
    color: #999;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.index-page6 .list .tip{
    font-size: 12px;
    line-height: 1.4;
    color: #fff;
    display: inline-block;
    padding: 0 10px;
    background: #1A946F;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    border-bottom-right-radius: 10px;
}
.index-page6 .list li:hover {
    box-shadow: 0 0 5px 3px rgba(60,60,60,0.1);
}




/* 关于我们页面 */
.about-page .editor{
    background: #fff;
    border-radius:10px ;
    padding: 60px;
    font-size: 16px;
    line-height: 3;
    color: #666;
    min-height: 500px;
}
.about-page .editor p{
    font-size: 16px;
    line-height: 3;
    color: #666;
}

/* 产品中心页面 */
.product-page .list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.product-page .list li:hover a{
   box-shadow: 0 0 5px 3px rgba(60,60,60,0.1);
}
.product-page .list li a{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.product-page .list li a img{
    width: 100px;
    object-fit: contain;
}
.product-page .list li a .info{
    flex: 1;
}
.product-page .list li a h4{
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}
.product-page .list li a  p{
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}
.product-page .list li a .common-tabs{
    margin: 0;
}
.product-page .list li a .tip{
    font-size: 12px;
    color: #fff;
    background: var(--color-active);
    padding: 5px 10px;
    border-bottom-right-radius: 10px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

.product-detail-page{
    padding: 20px 0;
}
.product-detail-page .list{
    gap: 10px;
}
.product-detail-page .list>li{
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    padding: 20px 30px 50px;
}
.product-detail-page .list>li h3{
    font-size: 20px;
    color: var(--color);
    font-weight: bold;
    line-height: 2;
    margin-bottom: 10px;
}
.product-detail-page1 .top{
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid #EEE;
}
.product-detail-page1 .top .l{
    gap: 20px;
}
.product-detail-page1 .top .l img{
    height: 60px;
    object-fit: contain;
}
.product-detail-page1 .top .l h3{
    font-size: 28px;
    color: #333;
    font-weight: bold;
    
}
.product-detail-page1 .top .r {
    gap: 10px;
}
.product-detail-page1 .top .r span{
    padding: 0 20px;
    height: 32px  ;
    line-height: 32px;
    color: #fff;
    font-size: 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
}
.product-detail-page1 .top .r span .iconfont{
    font-size: 24px;
    margin-right: 10px;
}
.product-detail-page1 .bottom{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    justify-content: space-between;
    align-items: flex-start;
	padding:30px 0 0;
}
.product-detail-page1 .bottom .l h5{
    font-size: 14px;
    color: #333;
    font-weight: bold;
    height: 30px;
    line-height: 30px;
	margin-bottom:10px;
}
.product-detail-page1 .bottom .l .common-tabs{
    margin: 0;
}
.product-detail-page1 .bottom .l .common-tabs li{
    font-size: 14px;
    line-height: 36px;
    height: 36px;
    padding: 0 20px;
    border-radius: 20px;
    background: #E2F0DB;
}

.product-detail-page1 .bottom .r ul{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap:15px 40px;

}
.product-detail-page1 .bottom .r ul li{
    min-width: 25%;
    font-size: 14px;
    color: #999;
}
.product-detail-page1 .bottom .r ul li span{
    color: #333;
}   
.product-detail-page .list>li.product-detail-page2{
    width: 100%;
    padding: 0;
}
.product-detail-page2 .swiper .swiper-pagination{
	bottom:3%;
}
.product-detail-page2 .product-detail-bullet{
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    margin: 0 5px;
}
.product-detail-page2 .product-detail-bullet-active{
    background: var(--color);
}
.product-detail-page2 img{
    width: 100%;
	height:400px;
    object-fit: cover;
}
.product-detail-page3 .editor{
    font-size: 14px;
    line-height: 26px;
    color: #666;
}
.product-detail-page5 .editor .item{
    display: flex;
    flex-direction: row;
    align-items: center;
   
}
.product-detail-page5 .editor .item .l{
    font-size: 16px;
    line-height: 3;
    color: #999;
    display: flex;
    flex-direction: row;
}
.product-detail-page5 .editor .item .l span{
   display: inline-block;
    width: 64px;
    text-align: justify;
    text-align-last: justify;
}
.product-detail-page5 .editor .item .r{
    color: #333;
    font-size: 16px;
    line-height: 3;
   
}

/* 玉环名企页面 */
.company-page {
  
}
.page .container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
}
.page .container>.l{
    /* width: calc(100% - 270px); */
	width: 100%;
}
.company-page .container .l .swiper{
    width: 100%;
    border-radius: 10px;
}
.company-page .container .l .swiper-wrapper{
    z-index: 2;
}
.company-page .container .l .swiper-slide {
    
}
.company-page .container .l .swiper-slide img{
    width: 100%;
    object-fit: cover;
}
.company-page .container .l .swiper-slide .name{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 50;
    padding: 20px 50px;
    width: 100%;
   
    background: rgba(0, 0, 0, 0.6);
}
.company-page .container .l .swiper-slide .name p{
    font-size: 18px;
    color: #fff;
    max-width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.company-page .container .l .swiper .swiper-pagination{
    height: 64px;
    width: max-content;

    bottom: 0;
    right: 0;
    left: auto;
    text-align: right;
    z-index: 2;
    display: flex;
    align-items: center;
    margin: 0 50px;
}
.company-page .container .l .swiper .swiper-pagination .my-bullet{
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    margin: 0 5px;
}
.company-page .container .l .swiper .swiper-pagination .my-bullet-active{
    background: var(--color);
}
.company-page .container .list{
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    gap: 10px;
}
.company-page .container .list li{
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}
.company-page .container .list li:hover{
    box-shadow: 0 0 5px 3px rgba(60,60,60,0.1);
}
.company-page .container .list li a{
    display: flex;
    flex-direction: row;
    gap: 30px;
    padding: 20px;
}
.company-page .container .list li .l{
    width: 150px;
}
.company-page .container .list li .l img{
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
}
.company-page .container .list li .r{
    flex: 1;
}
.company-page .container .list li .r h3{
    font-size: 20px;
    color: #333;
}
.company-page .container .list li .r .editor{
    margin: 10px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: 14px;
    line-height: 26px;
    color: #666;
}
.company-page .container .list li .r .editor p{
    font-size: 14px;
    line-height: 26px;
    color: #666;
}
.company-page .container .other{
    display: flex;
    flex-direction: row;
    gap: 50px;
}
.company-page .container .other span{
    font-size: 14px;
    color: #999;
}
.page .container>.r{
   width: 260px;
}

.company-detail-page .container .info{
    background: #fff;
    width: 100%;
    border-radius: 10px;
    padding: 30px 15px;
}
.company-detail-page .container .info .title{
    border-bottom: 1px solid #EEE;
    padding: 0 25px 20px;
}
.company-detail-page .container .info .title h3{
    font-size: 30px;
    font-weight: bold;
    color: #333;
    line-height: 2;
}
.company-detail-page .container .info .title .other{
    line-height: 2;
}
.company-detail-page .container .info .editor{
    padding: 20px 25px;
    font-size: 16px ;
    line-height: 36px;
    color: #666;
}
.company-detail-page .container .info .editor p{
    font-size: 16px ;
    line-height: 36px;
    color: #666;
}
.company-detail-page .container .bottom{
    padding: 20px 40px;
    background: #fff;
    border-radius: 10px;
    margin-top: 10px;
}
.company-detail-page .container .bottom p{
    font-size: 16px;
    line-height: 36px;
    color: #666;
}
.company-detail-page .container .bottom p a:hover{
    color: var(--color);

}


/* 查询中心 */
.search-page .list{
    gap: 10px;
}
.search-page .list .search-item{
    background: #fff;
    border-radius: 10px;
}
.search-page .list .search-item1{
    padding: 40px 30px;
}
.search-page .list .search-item1 .search-form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.search-page .list .search-item1 .search-form>li{
    display: flex;
    flex-direction: row;
    align-items: center;
   justify-content: space-between;
    font-size: 16px;
    color: #666;
}
.search-page .list .search-item1 .search-form .li-item{
    align-items: center;
}
.search-page .list .search-item1 .search-form .li-item .text{
    width: 70px;
    text-align: right;
    white-space: nowrap;
    font-size: 14px;
    color: #999;
}
.search-page .list .search-item1 .search-form .li-item .my-select{
    margin: 0;
    height: 45px;
    line-height: 45px;
}
.search-page .list .search-item1 .search-form .li-item  input{
    width: 200px;
    height: 45px;
    line-height: 45px;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 0 10px;
    font-size: 16px;
    color: #666;
}
.search-page .list .search-item1 .search-form .li-item  input::placeholder{
    color: var(--color);
    font-size: 14px;
}
.search-page .list .search-item1 .btn{
    height: 45px;
    line-height: 45px;
    padding: 0 60px;
    background: #F29E31;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin: 20px 70px;
}
.search-page .list .search-item2{
    padding: 30px 20px;
}
.search-page .list .search-item2 h3{
    font-size: 24px;
    font-weight: bold;
    color: var(--color);
    margin-bottom: 15px;
}
.search-page .list .search-item2 .my-table{

}
.search-page .list .search-item2 .my-table .th{
    gap: 10px;
    background: var(--color);
}
.search-page .list .search-item2 .my-table .tr{
    gap: 10px;
}
.search-page .list .search-item2 .my-table .th>li{
    width: 90px;
   font-size: 14px;
   color: #fff;
}
.search-page .list .search-item2 .my-table .tr>li{
    width: 90px;
    font-size: 14px;
}
.search-page .list .search-item2 .my-table .th>li:first-child{
    flex: none;
    padding: 0;
    width: 130px;
    padding-left: 20px;
}
.search-page .list .search-item2 .my-table .tr>li:first-child{
    flex: none;
    padding: 0;
    width: 130px;
    padding-left: 20px;
}
.search-page .list .search-item2 .my-table .th>li:nth-child(2){
    flex: 1;
}
.search-page .list .search-item2 .my-table .tr>li:nth-child(2){
    flex: 1;
}
.search-page .list .search-item2 .my-table .th>li:nth-child(5){
   width: 75px;
}
.search-page .list .search-item2 .my-table .tr>li:nth-child(5){
   width: 75px;
}

.search-page .list .search-item2 .my-table .tr:hover{
    border-color: #F0F7ED;
    background: #F0F7ED;
}


.search-page2 .list .search-item2 .my-table .th>li:first-child{
    width: 120px;
}
.search-page2 .list  .search-item2 .my-table .th>li{
    width: 50px;
   font-size: 14px;
   color: #fff;
}
.search-page2 .list .search-item2 .my-table .tr>li:first-child{
    width: 120px;
}
.search-page2 .list  .search-item2 .my-table .tr>li{
    width: 50px;
}
.search-page2 .list .search-item2 .my-table .th>li:nth-child(2){
    flex: none;
}
.search-page2 .list .search-item2 .my-table .tr>li:nth-child(2){
    flex: none;
}
.search-page2 .list .search-item2 .my-table .th>li:nth-child(4){
    width: 70px;
}
.search-page2 .list .search-item2 .my-table .tr>li:nth-child(4){
    width: 70px;
}
.search-page2 .list .search-item2 .my-table .th>li:nth-child(5){
    width: 140px;
}
.search-page2 .list .search-item2 .my-table .tr>li:nth-child(5){
    width: 140px;
}
.search-page2 .list .search-item2 .my-table .th>li:nth-child(6){
    width: 90px;
}
.search-page2 .list .search-item2 .my-table .tr>li:nth-child(6){
    width: 90px;
}
.search-page2 .list .search-item2 .my-table .th>li:nth-child(7){
    flex: 1;
}
.search-page2 .list .search-item2 .my-table .tr>li:nth-child(7){
    flex: 1;
}
.search-page2 .list .search-item2 .my-table .th>li:nth-child(8){
    width: 100px;
}
.search-page2 .list .search-item2 .my-table .tr>li:nth-child(8){
    width: 100px;
}

/* 求职中心 */

.job-page .container>.r{
    width: 290px;
}
.job-page .photo-card-list{
	    grid-template-columns: repeat(3, 1fr);
}
.job-page .photo-card-list a{
    padding: 15px;
}
.job-page .photo-card-list a .left img{
    width: 85px;
    height: 85px;
}
.job-page .common-tabs li{
   max-width: 160px;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
   padding: 0 8px;
}
.job-page .next-page{
    display: inline-block;
    margin-top: -10px;
    width: 100%;
    background: var(--color);
    height: 55px;
    line-height: 55px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
}

.job-detail-page .top{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 10px;
}
.job-detail-page .top .img{
    width: 200px;
    border-radius: 10px;
    overflow: hidden;
}
.job-detail-page .top .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.job-detail-page .top .center{
    flex: 1;
}
.job-detail-page .top .center .name{
    font-size: 24px;
    color: #000;
    font-weight: bold;
}
.job-detail-page .top .center ul{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0;
}
.job-detail-page .top .center ul li{
    height: 35px;
    line-height: 35px;
    background: #F2F2F2;
    border-radius: 20px;
    font-size: 16px;
    color: #000;
    padding: 0 15px;
}
.job-detail-page .top .center h3{
    line-height: 2;
    font-size: 24px;
    font-weight: bold;
    color: var(--color-active);
    margin-top: 10px;
}
.job-detail-page .top .center h4{
    line-height: 1.6;
    font-size: 16px;
    color: #000;
}
.job-detail-page .top .center .phone{
    margin-top: 20px;
    color: var(--color);
    font-size: 18px;
}
.job-detail-page .top .right{
    width: 300px;
}
.job-detail-page .top .right .btn{
    height: 50px;
    line-height: 50px;
    padding: 0 35px;
    border: 1px solid var(--color);
    border-radius: 10px;
    color: var(--color);
    background: none;
    font-size: 16px;
}
.job-detail-page .top .right ul{
    padding: 25px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.job-detail-page .top .right ul li{
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    margin-left: -1px;
    line-height: 1;
}
.job-detail-page .top .right ul li a{
    padding: 0 20px;
    font-size: 12px;
    line-height: 1;
    color: #333;
}
.job-detail-page .top .right ul li:hover a{
    color: var(--color);
}
.job-detail-page .top .right  .time{
    font-size: 14px;
    color: #999;
}
.job-detail-page .container>.l ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.job-detail-page .container>.l ul li{
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.job-detail-page .container>.l .item{
    padding: 30px 40px;
    background: #fff;
    flex: 1;
    border-radius: 10px;
}
.job-detail-page .container>.l .item h3{
    font-size: 20px ;
    font-weight: bold;
    line-height: 1.1;
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}
.job-detail-page .container>.l .item h3::after{
    content: '';
    display: inline-block;
    width: 40px;
    height: 4px;
    background: var(--color);
    border-radius: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.job-detail-page .container>.l .item .info{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 4%;
}
.job-detail-page .container>.l .item .info p{
    width: 48%;
    font-size: 14px;
    color: #333;
	display:flex;
	line-height: 1.6;
}
.job-detail-page .container>.l .item .info p.w100{
    width: 100%;
}
.job-detail-page .container>.l .item .info p span{
    color: #888;
	    white-space: nowrap;
}
.job-detail-page .container>.l .item .editor{
    font-size: 14px;
    color: #333;
    line-height: 36px;
}
.job-detail-page .container>.l .item .editor h4{
    line-height: 36px;
    font-size: 18px;
    font-weight: bold;
}
.job-detail-page .container>.l .item .editor p{
    font-size: 14px;
    color: #333;
    line-height: 36px;
}
.job-detail-page .container>.l .item .other{
    margin-top: 30px;

}
.job-detail-page .container>.l .item .other p{
    color: #666;
    font-size: 14px;
    
}
.job-detail-page .container>.l .item .other p+p{
    margin-top: 20px;
}
.job-detail-page .container>.l .item .other p a{
    color: var(--color-active);
    text-decoration: underline;
}

/* 招聘中心 */
.recruitment-page .select-form .bottom .l{
    align-items: center;
}
.recruitment-page .select-form .bottom .l-text{
    font-size: 14px;
    color: #102A43;
}
.recruitment-page .select-form .bottom .my-select{
    height: 30px;
    line-height: 30px;
    min-width: 100px;
}
.recruitment-page .select-form .bottom .my-select.active{
    background: var(--color);
}
.recruitment-page .select-form .bottom .my-select.active span{
    color: #fff;
}
.recruitment-page .select-form .bottom .my-select.active .iconfont{
    color: #fff;
}
.recruitment-page .select-form .bottom .my-select p span{
    font-size: 14px;
    color: #999;
}

.recruitment-page .select-form .bottom .my-select .my-select-list li{
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    color: #333;
}
.recruitment-page .select-form .bottom .btn{
    background: var(--color);
    padding: 0 20px;
}
.recruitment-page .container>.l{
    width: calc(100% - 200px);
    background: #fff;
    border-radius: 10px;
    padding: 0 30px 20px;
    height: 100%;
}
.recruitment-page .container>.l .list{
   display: flex;
   flex-direction: column;
}
.recruitment-page .container>.l .list li{
    border-bottom: 1px solid #eee;
}
.recruitment-page .container>.l .list li a{
    padding: 25px 0;
    display: flex;
    align-items: center;
    gap:20px;
}
.recruitment-page .container>.l .list li .info1{
    width: 260px;
}
.recruitment-page .container>.l .list li .info1 h5{
    font-size: 18px;
    font-weight: bold;
    line-height: 30px;
    color: #000;
}
.recruitment-page .container>.l .list li .info1 p{
    font-size: 12px;
    color: #666;
}
.recruitment-page .container>.l .list li .info2{
    width: 260px;
}
.recruitment-page .container>.l .list li .info2 p{
    font-size: 14px;
    line-height: 30px;
    color: var(--color-active);
}   
.recruitment-page .container>.l .list li .info2 span{
    font-size: 12px;
    color: #999;
}
.recruitment-page .container>.l .list li .info3{
    flex: 1;
    gap: 15px;
}
.recruitment-page .container>.l .list li .info3 .l{
    padding: 2px;
    border: 1px solid #eee;
    border-radius: 5px;
}
.recruitment-page .container>.l .list li .info3 img{
    width: 60px;
    border-radius: 5px;
}
.recruitment-page .container>.l .list li .info3 .r h6{
    font-size: 14px;
    
    color: #333;
    margin-bottom: 5px;
}
.recruitment-page .container>.l .list li .info3 .r h6 span{
    background: #1A946F;
    font-size: 12px;
    line-height: 1;
    border-radius: 10px 0 10px 0;
    padding: 0px 10px;
    color: #fff;
    margin-left: 5px;
}
.recruitment-page .container>.l .list li .info3 .r p{
    font-size: 12px;
    color: #999;
}


.recruitment-page .container>.r{
    width: 190px;
}
.recruitment-page .sidebar .item{
    position: relative;
    overflow: hidden;
    padding: 0;

}
.recruitment-page .sidebar .item a{
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 20px;
}
.recruitment-page .sidebar .item img{
    width: 100%;
    object-fit: contain;
    transition: all 0.5s;
}
.recruitment-page .sidebar .item:hover img{
    transform: scale(1.1);
}
.recruitment-page .sidebar .item .tip{
    position: absolute;
    top: 0;
    left: 0;
   background: var(--color-active);
   font-size: 12px;
   line-height: 1.4;
   padding: 0 6px;
   color: #fff;
   border-radius: 0 0 10px 0;
}
.recruitment-detail-page .top{
    padding: 30px 40px;
    background: #fff;
    margin-bottom: 10px;
    border-radius: 10px;
    gap: 40px;
    align-items: flex-end;
}
.recruitment-detail-page .top h3{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
.recruitment-detail-page .top h4{
    font-size: 16px;
}
.recruitment-detail-page .top .btn{
    font-size: 16px;
    padding:  15px 40px;
    color: var(--color);
    border: 1px solid var(--color);
    background: none;
    border-radius: 10px;
    transition: all 0.3s;
}
.recruitment-detail-page .top .btn:hover{
    background: var(--color);
    color: #fff;
}

.recruitment-detail-page .top .left{
    flex: 1;
}
.recruitment-detail-page .top .left span{
    color: #ccc;
    padding: 0 10px;
}
.recruitment-detail-page .top .center{
    width: 300px;
}
.recruitment-detail-page .top .center h3{
    color: var(--color-active);
}
.recruitment-detail-page .top .center h4{
    color: #999;
}
.recruitment-detail-page .container .l>ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.recruitment-detail-page .container .l>ul>li{
    background: #fff;
    border-radius: 10px;
    padding: 30px 40px;
}

.recruitment-detail-page .container .l>ul>li h3{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
}
.recruitment-detail-page .container .l>ul>li .info{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 4%;
}
.recruitment-detail-page .container .l>ul>li .info p{
    width: 48%;
    font-size: 16px;
    color: #333;
}
.recruitment-detail-page .container .l>ul>li .info p span{
    color: #999;
}
.recruitment-detail-page .container .l>ul>li .info p.w100{
    width: 100%;
}
.recruitment-detail-page .container .l>ul>li .btns{
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 30px;
}
.recruitment-detail-page .container .l>ul>li .btns .btn{
    color: var(--color);
    border: 1px     solid var(--color);
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s;
    background: none;
}
.recruitment-detail-page .container .l>ul>li .btns .btn:hover{
    background: var(--color);
    color: #fff;
}
.recruitment-detail-page .container .l>ul>li .editor{
    font-size: 16px;
    line-height: 2;
    color: #666;
}
.recruitment-detail-page .container .l>ul>li .editor p{
    font-size: 16px;
    line-height: 2;
    color: #666;
}
.job-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.job-list li{
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}
.job-list li a{
    display: flex;
    flex-direction: column;
    padding: 20px;
}
.job-list li .job-list-top{
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.job-list li .job-list-top .t-top{
   margin-bottom: 5px;
}
.job-list li .job-list-top .t-top p{
    font-size: 18px;
    color: #000;
    font-weight: bold;
}
.job-list li .job-list-top .t-top span{
    font-size: 14px;
    color: var(--color-active);
}
.job-list li .job-list-top .t-bottom p{
    font-size: 12px;
    color: #999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.job-list li .job-list-bottom{
    padding-top: 10px;
    gap: 10px;

}
.job-list li .job-list-bottom .left{
    width: 40px;
}
.job-list li .job-list-bottom .left img{
    width: 100%;
    object-fit: contain;
}
.job-list li .job-list-bottom .right{
    flex: 1;
    overflow: hidden;
}
.job-list li .job-list-bottom .right p{
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}
.job-list li .job-list-bottom .right span{
    display: block;
    width: 100%;
    font-size: 12px;
    color: #999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.address-list{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.address-list li{
    border: 1px solid #ddd;
    border-radius: 10px;
}
.address-list li a{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    width: 100%;
    height: 100%;
    padding: 15px 20px;
    font-size: 16px;
}
.address-list li .iconfont{
    font-size: 24px;
    color: var(--color);
}




.recruitment-company-list-page .container>.l{
    width: 100%;
}
.recruitment-company-list-page .container .list{
    margin-top: 0;
}


.recruitment-company-list-page .container>.r {
    width: 190px;
}
.recruitment-company-list-page .sidebar .item{
    position: relative;
    overflow: hidden;
    padding: 0;
}
.recruitment-company-list-page .sidebar .item .tip {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--color-active);
    font-size: 12px;
    line-height: 1.4;
    padding: 0 6px;
    color: #fff;
    border-radius: 0 0 10px 0;
}


























/* footer */
footer {
    background: #fff;
}
footer .top{
    border-top: 1px solid #CBEAD1;
}
footer .top .left{
    flex: 1;
    padding: 30px 0 25px;
}
footer .top .left .nav1>li{
    flex: 1;
}
footer .top .left .nav2 li a{
    font-size: 14px;
    line-height: 36px;
    color: #666;
}
footer .top .left .nav2 li:first-child a{
    font-size: 16px;
    line-height: 36px;
    font-weight: bold;
    color: #000;
}
footer .top .left .nav2 li a:hover{
    color: var(--color);
}
footer .top .right {
    padding: 30px 0 25px 60px;
    border-left: 1px solid #CBEAD1;
}
footer .top .right h4{
    font-size: 16px;
    line-height: 36px;
    font-weight: bold;
    color: #000;
}
footer .top .right li{
    font-size: 14px;
    line-height: 18px;
    padding: 9px 0;
    color: #666;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
footer .top .right li a{
    line-height: 1.2;
}
footer .top .right li .img{
    background: #CBEAD1;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer .top .right li .img img{
    width: 12px;
    height: 12px;
    object-fit: contain;
}
footer .top .right li p{
    width: 350px;
}

footer .bottom {
    border-top: 1px solid #CBEAD1;
    padding: 15px 0;
}
footer .bottom .left{
    gap: 30px;
    font-size: 14px;
    color: #999;
}
.pageadd {
	margin-top: 10px;
	padding: 14px 0 15px;
	text-align: center;
}
.pageadd a {
	border: 1px solid #CCCCCC;
	margin-right: 5px;
	padding: 4px 7px;
}
.pageadd span {
	border: 1px solid #CCCCCC;
	margin-right: 5px;
	padding: 4px 7px;
}
.pageadd span.current {
	background: var(--color);
	border: 1px solid var(--color);
	color: #FFFFFF;
	font-weight: bolder;
}