/* 蹇嵎瀵艰埅 start */
.ys-header-shortcut {
position: relative;
z-index: 101;
display: flex;
justify-content: space-between;
align-items: center;
padding: 5px 40px;
background-color: #f5f5f5;
border-bottom: 1px solid #eee;
}
.ys-header-shortcut .ys-header-shortcut__list {
display: flex;
align-items: center;
list-style: none;
margin: 0;
padding: 0;
}
.ys-header-shortcut .ys-header-shortcut__list:last-of-type{
margin-left: auto;
}
.ys-header-shortcut .ys-header-shortcut__link {
text-decoration: none;
font-size: 12px;
font-weight: 400;
line-height: 20px;
color: var(--ys-color-text-000);
margin-right: 32px;
}
.ys-header-shortcut .ys-header-shortcut__link:hover {
color: var(--ys-color-primary);
}
.ys-header-shortcut .ys-header-shortcut__tel {
font-size: 18px;
font-weight: 700;
line-height: normal;
color: var(--ys-color-strong);
display: inline-flex;
align-items: center;
}
.ys-header-shortcut .ys-header-shortcut__tel span {
font-size: 14px;
color: var(--ys-color-text-000);
}
.ys-header-shortcut .ys-header-shortcut__tel .iconfont {
font-size: 14px;
font-weight: normal;
color: var(--ys-color-strong);
}
/* 蹇嵎瀵艰埅 end */
.ys-header {
height: 107px;
transition: all 0.2s;
position: relative;
z-index: 100;
}
.ys-header.is-sticky {
position: sticky;
top: 0;
}
.ys-header .ys-header-nav {
width: 100%;
height: 72px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 40px;
background: #fff;
position: relative;
z-index: 20;
box-shadow: 0 15px 10px -15px #0000000f;
}
.ys-header__logo {
height: 37px;
}
.ys-header__nav {
display: flex;
flex-wrap: nowrap;
justify-content: space-between;
min-width: 440px;
max-width: 670px;
width: 50%;
height: 100%;
transition: max-width 0.3s;
}
.ys-header__nav .nav-one {
display: flex;
align-items: center;
height: 100%;
padding: 0 10px;
font-size: 18px;
font-weight: bold;
color: var(--ys-color-text-000);
text-decoration: none;
}
.ys-header__nav .nav-item.extend {
position: relative;
}
.ys-header__nav .nav-item.extend::after{
position: absolute;
content: '';
width: 120%;
height: 80px;
left: -10px;
bottom: -50px;
}
.ys-header__nav .nav-item:hover .nav-one {
color: var(--ys-color-primary);
}
.ys-header__nav .icon-short-arrow {
display: inline-block;
position: relative;
left: 2px;
transform: rotate(90deg);
transition: transform 0.2s;
color: var(--ys-color-text-300);
font-weight: 400;
}
.ys-header__nav .nav-item:hover .icon-short-arrow {
transform: rotate(-90deg);
}
.ys-header__nav .nav-two {
font-size: 14px;
color: var(--ys-color-text-000);
text-decoration: none;
}
.ys-header__nav .nav-two:hover {
color: var(--ys-color-primary);
}
/* search start */
.ys-header__right {
display: flex;
align-items: center;
justify-content: end;
}
.ys-header__right.open {
flex: 1;
}
.ys-header__search {
position: relative;
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
width: 203px;
height: 44px;
padding: 10px 12px;
background-color: #fff;
border: 1px solid #ccc;
border-radius: 4px;
transition: all 0.2s;
transform-origin: right;
}
.ys-header__right.open .ys-header__search {
width: calc(100% - 130px);
padding: 10px 12px;
}
.ys-header__search::after {
content: '';
position: absolute;
height: 16px;
left: 12px;
top: 13px;
width: 1px;
background-color: var(--ys-color-text-000);
animation: flashing 0.8s infinite;
}
.ys-header__right.open .ys-header__search:focus-within:after {
display: none;
}
@keyframes flashing {
0% {
opacity: 1;
}
40% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.ys-header__search .ys-header__search-input {
width: calc(100% - 46px);
height: 16px;
color: var(--ys-color-text-000);
caret-color: var(--ys-color-primary);
border: none;
outline: none;
}
.ys-header__search:focus-within {
border-color: var(--ys-color-primary);
}
.ys-header__search .ys-header__search-input::placeholder {
color: var(--ys-color-text-500);
}
.ys-header__search .search-btn {
width: 26px;
padding: 0;
position: absolute;
top: 2px;
right: 10px;
background-color: #fff;
border: none;
outline: none;
cursor: pointer;
transition: transform 0.2s;
}
.ys-header__search .search-btn .icon-search {
display: inline-block;
font-size: 26px;
color: var(--ys-color-text-000);
transition: transform 0.2s;
}
.ys-header__search .search-btn:hover .icon-search {
color: var(--ys-color-primary);
transform: scale(1.1);
}
/* search end */
/* user start */
.ys-header__user {
margin-left: 30px;
position: relative;
height: 40px;
padding-top: 3px;
box-sizing: border-box;
}
.ys-header__user > a > i {
font-size: 24px;
cursor: pointer;
color: var(--ys-color-text-000);
}
.ys-header__user .ys-header__user-card {
position: absolute;
top: 40px;
right: -10px;
padding: 16px;
background-color: var(--ys-color-white);
z-index: 20;
border-radius: 2px;
box-shadow: 0px 4px 14px 0px #0000001a;
border: 1px solid var(--ys-color-text-700);
transition: all 0.2s;
transform-origin: top;
transform: scaleY(0);
}
.ys-header__user:hover .ys-header__user-card {
transform: scaleY(1);
}
.ys-header__user .ys-header__user-card button {
height: 32px;
line-height: 32px;
margin-bottom: 12px;
width: 100px;
font-size: 12px;
padding: 0;
}
.ys-header__user .ys-header__user-card button a {
color: unset;
text-decoration: none;
display: block;
}
.ys-header__user .ys-header__user-card button:last-child {
margin-bottom: 0;
}
/* user end */
/* 鎮仠鍗$墖 start */
.ys-header__card {
position: absolute;
z-index: 18;
width: 100%;
left: 0;
/* right: 0; */
top: 72px;
background-color: var(--ys-color-white);
transition: all .2s ease-in-out;
transform-origin: top;
transform: scaleY(0);
max-height: 82vh;
overflow-y: auto;
overflow-x: hidden;
padding: 40px;
box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1) inset;
border-top: 0.5px solid var(--ys-color-text-700);
border-bottom: 1px solid var(--ys-color-text-700);
transition-delay: 150ms;
}
.ys-header__card.show {
transform: scaleY(1);
}
.ys-header__cover {
position: fixed;
z-index: 17;
left: 0;
right: 0;
top: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.7);
transition-delay: 100ms;
}
/* 鎮仠鍗$墖 end */
/* 鎼滅储鍗$墖 start */
.ys-header__search-card {
background-color: #f3f5f8;
padding: 50px 40px;
}
.ys-header__search-card i {
position: absolute;
top: 20px;
right: 20px;
cursor: pointer;
font-size: 20px;
}
.ys-header__search-card .search-hot {
margin-bottom: 40px;
}
.ys-header__search-card .search-title {
font-size: 14px;
font-weight: 600;
margin-bottom: 12px;
}
.ys-header__search-card .search-title span {
font-weight: 400;
color: var(--ys-color-text-300);
margin-left: 16px;
cursor: pointer;
}
.ys-header__search-card .search-words a {
margin-right: 20px;
font-size: 14px;
text-decoration: none;
color: var(--ys-color-text-000);
}
/* 鎼滅储鍗$墖 end */
/* 瑙e喅鏂规 start */
.ys-header__case {
display: flex;
flex-wrap: wrap;
/* grid-template-rows: 193px; */
/* grid-auto-rows: 193px; */
/* grid-template-columns: repeat(6, 1fr); */
/* gap: 40px; */
/* margin: 0 10px; */
padding: 40px 20px 20px;
/* left: 20px; */
background-color: #f3f5f8;
}
.ys-header__case .case-item {
width: 192px;
margin: 0 20px 20px;
text-decoration: none;
}
.ys-header__case .case-item:hover img {
transform: scale(1.1);
}
.ys-header__case .case-item:hover .case-title {
color: var(--ys-color-primary);
}
.ys-header__case .case-img {
display: block;
/* width: 193px; */
/* height: 118px; */
border-radius: 4px;
}
.ys-header__case .case-title {
text-decoration: none;
display: inline-block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 14px;
margin: 15px 0 2px;
color: var(--ys-color-text-000);
}
.ys-header__case .case-desc {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 12px;
color: var(--ys-color-text-300);
}
/* 瑙e喅鏂规 end */
/* 浜у搧寮圭獥 start */
.ys-header__product a {
text-decoration: none;
}
.ys-header__product .product-wrap {
display: grid;
grid-template-columns: repeat(6, 1fr);
/* gap: 0 40px; */
}
.ys-header__product .to-product {
display: flex;
align-items: center;
font-size: 18px;
color: var(--ys-color-text-000);
margin-bottom: 20px;
}
.ys-header__product .to-product i {
transform: rotate(0deg) !important;
display: block;
font-size: 18px;
}
.ys-header__product .to-product:hover,
.ys-header__product .product-item:hover .product-title {
color: var(--ys-color-primary);
}
.ys-header__product .product-img {
width: 140px;
height: 140px;
margin: auto;
background: unset;
}
.ys-header__product .product-img img {
object-fit: contain;
}
.ys-header__product .product-item__box {
font-size: 0;
position: relative;
margin-bottom: 20px;
border-bottom: 1px solid #7C7C7C;
padding-right: 40px;
padding-left: 15px;
}
.ys-header__product .product-item__box::before {
content: '';
position: absolute;
width: 5px;
height: 18px;
top: 4px;
left: 0;
background-color: #1554B5;
}
.ys-header__product .product-title {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
margin: 0 0 18px;
font-size: 16px;
font-weight: 600;
display: inline-block;
color: var(--ys-color-text-000);
}
.ys-header__product .product-item__child + .product-item__child {
margin-top: 10px;
}
.ys-header__product .product-item__link {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 14px;
color: var(--ys-color-text-000);
}
.ys-header__product .product-item__link:hover {
color: var(--ys-color-primary);
}
.ys-header__product .product-item__list {
padding-right: 40px;
padding-left: 15px;
}
/* 浜у搧寮圭獥 end */
/* 鍐呭涓庢湇鍔� start */
.ys-header__service {
display: flex;
padding: 0;
}
.ys-header__service .service-cate {
background-color: #f3f5f8;
padding: 30px 40px;
width: 200px;
box-sizing: border-box;
margin: 0;
}
.ys-header__service .service-cate li {
list-style: none;
}
.ys-header__service .service-cate .service-cate-title {
font-size: 18px;
font-weight: 500;
margin-bottom: 30px;
color: var(--ys-color-text-000);
}
.ys-header__service .service-cate .service-cate-item {
margin-bottom: 30px;
font-size: 14px;
cursor: pointer;
color: var(--ys-color-text-100);
}
.ys-header__service .service-cate .service-cate-item a {
color: var(--ys-color-text-100);
text-decoration: none;
}
.ys-header__service .service-cate .service-cate-item:hover a,
.ys-header__service .service-cate .service-cate-item:hover,
.ys-header__service .service-cate .service-cate-item.active,
.ys-header__service .service-cate .service-cate-item.active a {
color: var(--ys-color-primary);
}
.ys-header__service .service-content {
padding: 40px;
overflow-y: auto;
}
.ys-header__service .service-content-box {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 40px;
}
.ys-header__service .content-item {
width: 180px;
text-decoration: none;
display: block;
}
.ys-header__service .content-item[data-type="information"] {
width: 193px;
}
.ys-header__service .content-item[data-type="information"] .content-img {
height: 118px;
}
.ys-header__service .content-item[data-type='sample'],
.ys-header__service .content-item[data-type='quote'] {
width: 230px;
}
.ys-header__service .content-item[data-type='sample'] .content-img,
.ys-header__service .content-item[data-type='quote'] .content-img {
height: 140px;
}
.ys-header__service .content-item:hover img {
transform: scale(1.1);
}
.ys-header__service .content-item:hover .content-title {
color: var(--ys-color-primary);
}
.ys-header__service .content-item .content-img {
display: block;
width: 100%;
height: 180px;
margin-bottom: 20px;
}
.ys-header__service .content-item .content-title {
text-decoration: none;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 14px;
color: var(--ys-color-text-000);
}
.ys-header__service .content-item .content-desc {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 12px;
color: var(--ys-color-text-300);
margin-top: 6px;
}
.ys-header__service .service-content-slide {
height: 1px;
background-color: var(--ys-color-text-700);
margin: 30px 0 20px;
}
.ys-header__service .service-content-more {
color: var(--ys-color-primary);
font-size: 14px;
text-decoration: none;
}
.ys-header__service .service-content-more i {
transform: rotate(0deg) translateY(1px) !important;
margin-left: 0px;
}
/* 鍐呭涓庢湇鍔� end */
/* 鍏充簬鎴戜滑 start */
.ys-header__about {
display: flex;
padding: 0;
}
.ys-header__about .about-cate {
background-color: #f3f5f8;
padding: 30px 40px;
width: 200px;
box-sizing: border-box;
margin: 0;
}
.ys-header__about .about-cate li {
list-style: none;
}
.ys-header__about .about-cate .about-cate-title {
font-weight: 18px;
font-weight: 500;
margin-bottom: 30px;
}
.ys-header__about .about-cate .about-cate-item {
margin-bottom: 30px;
font-size: 14px;
color: var(--ys-color-text-100);
cursor: pointer;
}
.ys-header__about .about-cate .about-cate-item a {
color: var(--ys-color-text-100);
text-decoration: none;
}
.ys-header__about .about-cate .about-cate-item:hover,
.ys-header__about .about-cate .about-cate-item:hover a,
.ys-header__about .about-cate .about-cate-item.active,
.ys-header__about .about-cate .about-cate-item.active a {
color: var(--ys-color-primary);
}
.ys-header__about .about-content {
padding: 40px;
width: calc(100% - 200px);
box-sizing: border-box;
overflow-y: auto;
}
.ys-header__about .about-content-box {
display: flex;
flex-wrap: wrap;
/* grid-template-columns: repeat(6, 1fr); */
/* gap: 40px; */
margin: -20px;
}
.ys-header__about .about-item {
width: 230px;
max-width: 230px;
text-decoration: none;
margin: 20px;
}
.ys-header__about .about-item:hover img {
transform: scale(1.1);
}
.ys-header__about .about-item:hover .about-title {
color: var(--ys-color-primary);
}
.ys-header__about .about-item .about-img {
display: block;
width: 100%;
height: 140px;
margin-bottom: 20px;
border-radius: 4px;
}
.ys-header__about .about-item .about-img img {
object-fit: cover;
}
.ys-header__about .about-item .about-title {
text-decoration: none;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 14px;
color: var(--ys-color-text-000);
}
.ys-header__about .about-item .about-desc {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 12px;
color: var(--ys-color-text-300);
margin-top: 6px;
}
.ys-header__about .about-content-slide {
height: 1px;
background-color: var(--ys-color-text-700);
margin: 30px 0 20px;
}
.ys-header__about .about-content-more {
color: var(--ys-color-primary);
font-size: 14px;
text-decoration: none;
}
.ys-header__about .about-content-more i {
transform: rotate(0deg) translateY(1px) !important;
margin-left: 0px;
}
/* 鍏充簬鎴戜滑 end */
@media only screen and (max-width: 1895px) {
/* 瑙e喅鏂规 start */
.ys-header__case .case-item{
width: calc(16% - 40px);
}
/* 瑙e喅鏂规 end */
}
@media only screen and (max-width: 1500px) {
.ys-header__nav {
max-width: 500px;
}
}
@media only screen and (max-width: 1440px) {
/* 瑙e喅鏂规 start */
.ys-header__case {
padding-right: 40px;
}
.ys-header__case .case-item{
width: calc(16.66% - 20px);
margin-right: 0px;
}
/* 瑙e喅鏂规 end */
/* 鍐呭涓庢湇鍔� start */
.ys-header__service .service-content {
width: calc(100% - 200px);
}
.ys-header__service .service-content-box {
gap: 20px;
}
.ys-header__service .content-item {
width: 100%;
}
.ys-header__service .content-item[data-type="information"] {
width: 100%;
}
/* 鍐呭涓庢湇鍔� end */
/* 鍏充簬鎴戜滑 start*/
.ys-header__about .about-content-box {
flex-wrap: wrap;
margin: 0 -10px;
}
.ys-header__about .about-content {
padding: 40px 20px;
}
.ys-header__about .about-item {
width: calc(25% - 20px);
margin: 0 10px;
}
/* 鍏充簬鎴戜滑 end*/
}
@media only screen and (max-width: 1280px) {
.ys-header__nav {
max-width: 38%;
}
.ys-header__nav .nav-one {
font-size: 16px;
}
}
@media only screen and (max-width: 1100px) {
.ys-header__service .service-content-box {
grid-template-columns: repeat(4, 1fr);
}
}/* 鎼滅储缁撴灉 */
@media only screen and (max-width: 1920px) {
.ys-search {
--content-img-w: 255px;
--content-img-h: 190px;
--content-title-size: 22px;
--content-info-p: 14px;
--content-tag-size: 14px;
--content-item-margin: 0 0 40px 0;
--content-time-size: 12px;
}
}
@media only screen and (max-width: 1280px) {
.ys-search {
--content-img-w: 196px;
--content-img-h: 146px;
--content-title-size: 19px;
--content-info-p: 6px;
--content-tag-size: 11px;
--content-item-margin: 0 0 20px 0;
--content-time-size: 10px;
}
}
.ys-search {
width: var(--ys-content-width);
margin: 0 auto;
}
.ys-search__keyword {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 20px;
}
.ys-search__title {
font-size: 40px;
font-weight: 500;
}
/* tabs start */
.ys-search__tabs {
display: flex;
}
.ys-search__tabs li {
border: 1px solid var(--ys-color-text-700);
color: var(--ys-color-text-100);
font-size: 14px;
padding: 10px 20px;
border-radius: 30px;
margin-left: 12px;
list-style: none;
cursor: pointer;
}
.ys-search__tabs li.active,
.ys-search__tabs li:hover {
color: var(--ys-color-white);
background-color: var(--ys-color-assist);
}
/* tabs end */
/* 鎼滅储 start */
.ys-search__input {
position: relative;
}
.ys-search__input .iconfont {
position: absolute;
right: 10px;
bottom: 50%;
transform: translateY(50%);
font-size: 26px;
color: var(--ys-color-primary);
cursor: pointer;
}
.search__input {
box-sizing: border-box;
height: 50px;
font-size: 16px;
padding: 8px 20px;
}
.search__input:hover {
border-color: var(--ys-color-primary);
}
/* 鎼滅储 end */
/* 鎼滅储缁撴灉 start */
.ys-search__result {
margin-top: 30px;
margin-bottom: 70px;
}
.ys-search__num {
display: flex;
align-items: center;
justify-content: space-between;
}
.ys-search__num .result-num {
font-size: 30px;
font-weight: 600;
}
.ys-search__num .result-num span {
color: var(--ys-color-strong);
margin: 0 4px;
}
.ys-search__num .result-type {
display: flex;
align-items: center;
font-size: 14px;
}
.ys-search__num .result-type div {
margin-left: 40px;
display: flex;
align-items: center;
}
.ys-search__num .result-type input {
margin-right: 4px;
visibility: hidden;
}
.ys-search__num button {
font-size: 16px;
background-color: var(--ys-color-assist);
color: var(--ys-color-white);
border: 0;
outline: none;
width: 178px;
border-radius: 2px;
height: 50px;
line-height: 50px;
position: relative;
}
.ys-search__num button div {
position: absolute;
right: 0;
top: -40px;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
color: var(--ys-color-text-100);
border: 1px solid var(--ys-color-text-700);
display: none;
cursor: pointer;
z-index: 2;
background-color: var(--ys-color-white);
}
.ys-search__num button div::after {
position: absolute;
content: '脳';
top: 0px;
right: 11px;
font-size: 21px;
color: var(--ys-color-text-100);
line-height: 38px;
}
.ys-search__num button.disabled {
cursor: not-allowed;
background-color: var(--ys-color-text-500);
}
.ys-search__num button:not(.disabled):hover {
cursor: pointer;
background-color: var(--ys-color-warning);
}
.ys-search__num button:not(.disabled):hover div {
display: block;
}
.ys-search__slide {
height: 1px;
background-color: var(--ys-color-text-700);
margin: 30px 0 40px;
}
/* 鎼滅储缁撴灉 end */
/* 浜у搧 start */
.ys-search__result button[disabled="true"] {
cursor: not-allowed;
background: #2543F14D;
border-color: #2543F14D;;
}
.ys-search__product {
margin-top: 30px;
border: 1px solid var(--ys-color-text-700);
}
.ys-search__product .product-table-header {
height: 54px;
line-height: 54px;
display: flex;
}
.ys-search__product .product-table-header div {
width: 50%;
color: var(--ys-color-white);
padding-left: 24px;
font-size: 14px;
}
.ys-search__product .product-table-header div:first-child {
background-color: var(--ys-color-primary);
opacity: 0.6;
}
.ys-search__product .product-table-header div:last-child {
background-color: #5580F0;
opacity: 0.7;
}
.ys-search__product .product-table-item {
border-bottom: 1px solid var(--ys-color-text-700);
position: relative;
display: flex;
}
.ys-search__product .product-table-item::before {
content: '';
width: 3px;
height: 100%;
background-color: var(--ys-color-primary);
left: 0;
display: none;
position: absolute;
}
.ys-search__product .product-table-item:hover {
box-shadow: 0px 0px 20px 0px #00000026;
border-bottom: 0;
z-index: 2;
}
.ys-search__product .product-table-item:hover::before {
display: block;
}
.ys-search__product .product-table-item:last-child {
border-bottom: 0;
}
.product-table-item .left {
border-right: 1px solid var(--ys-color-text-700);
padding: 16px 24px 12px;
width: 50%;
background-color: var(--ys-color-white);
}
.product-table-item .product-info {
display: flex;
}
.product-table-item .product-table-img {
width: 90px;
height: 90px;
border-radius: 4px;
}
.product-table-item .product-table-info {
margin-left: 24px;
display: flex;
flex-direction: column;
width: 320px;
}
.product-table-item .product-table-info a {
font-weight: 600;
color: var(--ys-color-text-000);
margin-bottom: 8px;
font-size: 16px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
text-decoration: none;
}
.product-table-item .product-table-info p:nth-child(2) {
font-size: 14px;
color: var(--ys-color-text-100);
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}
.product-table-item .product-table-button {
margin-left: auto;
background-color: #ebedfa;
color: var(--ys-color-primary);
cursor: pointer;
border-radius: 2px;
width: 88px;
height: 34px;
line-height: 34px;
text-align: center;
font-size: 14px;
border: 1px solid #1238D866;
transition: all 0.2s;
text-decoration: none;
}
.product-table-item .product-action {
display: flex;
align-items: center;
margin-top: 8px;
font-size: 14px;
}
.product-table-item .product-action div {
display: flex;
align-items: center;
}
.product-table-item .product-action span,
.product-table-item .product-action a {
margin-left: 36px;
cursor: pointer;
display: flex;
align-items: center;
text-decoration: none;
color: var(--ys-color-text-000);
}
.product-table-item .product-action div input {
margin-right: 4px;
visibility: hidden;
}
.product-table-item .product-action span i,
.product-table-item .product-action a i {
color: var(--ys-color-assist);
margin-right: 4px;
font-size: 18px;
}
.product-table-item .product-table-button:hover {
background-color: var(--ys-color-primary);
color: var(--ys-color-white);
}
.product-table-item .right {
background-color: var(--ys-color-background);
width: 50%;
display: grid;
grid-template-columns: repeat(3, auto);
padding: 28px 24px;
margin: 0;
gap: 16px;
}
.product-table-item .right li {
list-style: none;
color: var(--ys-color-text-100);
font-size: 14px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.product-table-item .right li span {
color: var(--ys-color-text-000);
}
.product-table-item .right .product-table-service {
text-decoration: none;
color: #0031ce;
cursor: pointer;
}
/* 浜у搧 end */
/* 鏂囩珷 start */
.ys-search__article .article-item {
display: flex;
align-items: center;
margin: var(--content-item-margin);
border: 1px solid var(--ys-color-background-100);
background-color: var(--ys-color-white);
border-radius: 4px;
overflow: hidden;
}
.ys-search__article .article-item:hover {
box-shadow: 0px 0px 10px 0px rgba(37, 67, 241, 0.13);
border-color: #1238D866;
}
.ys-search__article .article-item:hover img {
transform: scale(1.1);
}
.ys-search__article .article-item:hover .article-title {
color: var(--ys-color-primary);
}
.ys-search__article .article-img {
width: var(--content-img-w);
height: var(--content-img-h);
}
.ys-search__article .article-info {
margin-left: 36px;
flex: 1;
width: calc(100% - var(--content-img-w) - 5px);
height: var(--content-img-h);
padding: var(--content-info-p) 0;
display: flex;
flex-direction: column;
padding-right: 20px;
}
.ys-search__article .article-title {
text-decoration: none;
display: grid;
color: var(--ys-color-text-000);
width: 100%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
margin-bottom: calc(var(--content-title-size) - 12px);
}
.ys-search__article h2 {
font-weight: 400;
font-size: var(--content-title-size);
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.ys-search__article .article-tag {
margin-bottom: calc(var(--content-title-size) - 11px);
}
.ys-search__article .article-tag span {
padding: 4px 6px;
border-radius: 2px;
border: 1px solid rgba(37, 67, 241, 0.4);
color: var(--ys-color-primary);
font-size: var(--content-tag-size);
line-height: normal;
display: inline-block;
margin-right: 10px;
}
.ys-search__article .article-desc {
font-size: calc(var(--content-title-size) - 6px);
font-weight: 300;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}
.ys-search__article .article-time {
font-size: var(--content-time-size);
margin-top: 16px;
color: var(--ys-color-text-300);
display: flex;
align-items: center;
margin-top: auto;
}
.ys-search__article .article-time span {
margin-right: 30px;
display: flex;
align-items: center;
}
.ys-search__article .article-time span i {
font-size: calc(var(--content-time-size) + 4px);
margin-right: 8px;
}
/* 鏂囩珷 end */
/* 瑙e喅鏂规 start */
.ys-search__solution {
display: flex;
flex-wrap: wrap;
/* gap: 30px; */
margin: -15px;
}
.ys-search__solution .grid-item {
width: calc(25% - 30px);
margin: 15px;
text-decoration: none;
}
.ys-search__solution .grid-item:hover img {
transform: scale(1.1);
}
.ys-search__solution .grid-item:hover .solution-title h2 {
color: var(--ys-color-primary);
}
.ys-search__solution .solution-img {
display: block;
width: 100%;
height: 208px;
border-radius: 4px;
}
.ys-search__solution .solution-title {
display: flex;
text-decoration: none;
margin: 10px 0;
}
.ys-search__solution h2 {
font-size: 18px;
margin: 0;
font-weight: 400;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
color: var(--ys-color-text-000);
}
.ys-search__solution .solution-desc {
font-size: 14px;
font-weight: 300;
color: var(--ys-color-text-100);
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}
/* 瑙e喅鏂规 end */
/* 鏃犵粨鏋� start */
.ys-search__empty {
text-align: center;
margin: 90px 0 150px;
}
.ys-search__empty img {
width: 160px;
margin: 0 auto 20px;
}
.ys-search__empty p:nth-child(2) {
font-weight: 500;
font-size: 20px;
}
.ys-search__empty p:last-child {
font-size: 16px;
margin-top: 8px;
color: var(--ys-color-text-300);
}
/* 鏃犵粨鏋� end */
.product-table-item .product-action div label {
position: relative;
}
.product-table-item .product-action div input + label::before {
content: '';
display: block;
width: 12px;
height: 12px;
cursor: pointer;
position: absolute;
top: 4px;
left: -16px;
border: 1px solid #ccc;
}
.product-table-item .product-action div input:checked + label::before {
background: var(--ys-color-assist);
border-color: var(--ys-color-assist);
}
.product-table-item .product-action div input:checked + label::after {
content: '';
position: absolute;
top: 5px;
left: -12px;
width: 5px;
height: 9px;
border: 0;
border-right: 2px solid var(--ys-color-white);
border-bottom: 2px solid var(--ys-color-white);
transform: rotate(45deg);
transition: all 0.3s ease;
}
/* 妯℃嫙input radio */
.ys-search__num .result-type label {
position: relative;
}
.ys-search__num .result-type input + label::before {
content: '';
display: block;
width: 12px;
height: 12px;
cursor: pointer;
position: absolute;
top: 5px;
left: -16px;
border: 1px solid #ccc;
}
.ys-search__num .result-type input:checked + label::before {
background: var(--ys-color-assist);
border-color: var(--ys-color-assist);
}
.ys-search__num .result-type input:checked + label::after {
content: '';
position: absolute;
top: 6px;
left: -12px;
width: 5px;
height: 9px;
border: 0;
border-right: 2px solid var(--ys-color-white);
border-bottom: 2px solid var(--ys-color-white);
transform: rotate(45deg);
transition: all 0.3s ease;
}
/** 琛ㄦ牸搴曢儴 start **/
.ys-product__table-footer {
display: flex;
align-items: center;
justify-content: space-between;
margin: 30px 0 0;
}
/** 琛ㄦ牸搴曢儴 end **/
/* 鎵归噺鎿嶄綔 start */
.ys-product__action {
display: flex;
align-items: center;
opacity: 0;
transition: opacity 0.3s;
pointer-events: none;
}
.ys-product__action.active {
opacity: 1;
pointer-events: auto;
}
.ys-product__action .batch-action-num {
font-size: 16px;
}
.ys-product__action .batch-action-num i {
color: var(--ys-color-strong);
font-weight: 500;
font-style: normal;
}
.ys-product__action .batch-action-save {
margin-left: 30px;
color: var(--ys-color-primary);
font-size: 14px;
cursor: pointer;
}
/* 鎵归噺鎿嶄綔 end */
/* 鍒嗛〉 start */
.info-pagination .c-page-item + .c-page-item {
margin-left: 4px;
}
/* 鍒嗛〉 end */
/* 绛涢€夐」 start */
.ys-product-filter {
width: var(--ys-content-width);
margin: 30px auto;
}
.ys-product-filter__box {
border: 1px solid var(--ys-color-text-700);
}
.ys-product-filter__box .filter-item {
display: flex;
border-bottom: 1px solid var(--ys-color-background-100);
}
.ys-product-filter__box .filter-item:last-child {
border-bottom: 0;
}
.ys-product-filter__box .filter-item .filter-item-title {
background-color: var(--ys-color-background-050);
font-size: 16px;
padding: 16px;
min-width: 130px;
}
.ys-product-filter__box .filter-item .filter-item-selection {
padding: 16px 20px;
color: var(--ys-color-text-100);
width: calc(var(--ys-content-width) - 300px);
height: 50px;
box-sizing: border-box;
overflow: hidden;
}
.ys-product-filter__box .filter-item .filter-item-selection.expand {
height: auto;
}
.ys-product-filter__box .filter-item-selection .selection-box {
display: flex;
flex-wrap: wrap;
/* gap: 16px 36px; */
margin: -8px -18px;
}
.ys-product-filter__box .filter-item-selection .selection-item {
display: flex;
align-items: center;
font-size: 14px;
cursor: pointer;
margin: 8px 18px;
}
.ys-product-filter__box .filter-item-selection .selection-item:hover {
color: var(--ys-color-text-000);
}
.ys-product-filter__box .filter-item-selection .selection-item:hover input + label::before {
border-color: var(--ys-color-text-000);
}
.ys-product-filter__box .filter-item-selection .selection-item input {
margin-right: 4px;
visibility: hidden;
}
.ys-product-filter__box .filter-item .filter-item-expand {
font-size: 12px;
color: var(--ys-color-text-300);
margin-left: auto;
margin-right: 10px;
height: 50px;
cursor: pointer;
display: flex;
align-items: center;
}
.ys-product-filter__box .filter-item .filter-item-expand:hover {
color: var(--ys-color-primary);
}
.ys-product-filter__box .filter-item .filter-item-expand i {
transform: rotate(90deg);
}
.ys-product-filter__box .filter-item .filter-item-expand i.expand {
transform: rotate(-90deg);
}
.ys-product-filter__more {
display: flex;
align-items: center;
font-size: 12px;
padding: 5px 10px;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
background-color: var(--ys-color-background-100);
width: fit-content;
margin: 0 auto;
cursor: pointer;
}
.ys-product-filter__more:hover {
background-color: #e2e2e2;
}
.ys-product-filter__more i {
transform: rotate(90deg);
margin-left: 4px;
transition: all .2s;
}
.ys-product-filter__more.expand i {
transform: rotate(-90deg);
}
/* 绛涢€夐」 end */
/* 妯℃嫙input checkbox */
.ys-product-filter__box .selection-item label {
position: relative;
}
.ys-product-filter__box .selection-item input + label::before {
content: '';
display: block;
width: 12px;
height: 12px;
cursor: pointer;
position: absolute;
top: 5px;
left: -16px;
border: 1px solid #ccc;
}
.ys-product-filter__box .selection-item input:checked + label::before {
background: var(--ys-color-assist);
border-color: var(--ys-color-assist) !important;
}
.ys-product-filter__box .selection-item input:checked + label::after {
content: '';
position: absolute;
top: 6px;
left: -12px;
width: 5px;
height: 9px;
border: 0;
border-right: 2px solid var(--ys-color-white);
border-bottom: 2px solid var(--ys-color-white);
transform: rotate(45deg);
transition: all 0.3s ease;
}
.ys-product-filter-checked {
display: flex;
align-items: center;
gap: 9px;
font-size: 14px;
margin-bottom: 18px;
}
.ys-product-filter-checked .checked-item {
border-radius: 2px;
border: 1px solid var(--ys-color-text-700);
background: var(--ys-color-white);
padding: 2px 9px;
display: flex;
align-items: center;
}
.ys-product-filter-checked .checked-item i {
font-size: 12px;
margin-left: 6px;
transform: scale(0.6);
line-height: 15px;
color: var(--ys-color-primary);
cursor: pointer;
}
.ys-product-filter-checked button {
border-radius: 2px;
background-color: var(--ys-color-background-100);
border: 1px solid var(--ys-color-background-100);
cursor: pointer;
}
.ys-product-filter-checked button:hover {
border-color: var(--ys-color-primary);
color: var(--ys-color-primary);
}
@media only screen and (max-width: 1280px) {
.ys-product-filter__box .filter-item .filter-item-selection {
width: calc(var(--ys-content-width) - 230px);
}
}/* 缃戠珯搴曢儴 */
.ys-footer {
width: 100%;
background: #ecf1f8;
--ys-page-padding: calc(50vw - 650px);
}
@media only screen and (max-width: 1440px) {
.ys-footer {
--ys-page-padding: calc(50vw - 600px);
}
}
.ys-footer__ad {
height: 89px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 var(--ys-page-padding);
margin: 0 auto;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
}
.ys-footer__content {
padding: 40px var(--ys-page-padding) 50px;
margin: 0 auto;
display: flex;
justify-content: space-between;
border-bottom: 1px solid #eee;
}
.ys-footer__content .footer_phone {
margin: 0 0 1em 0;
font-size: 30px;
font-weight: 600;
line-height: 36px;
color: var(--ys-color-strong);
}
.ys-footer__content .footer_work_time,
.ys-footer__content .footer_email {
font-size: 14px;
color: rgba(51, 51, 51, 0.68);
}
.ys-footer__content .left-part .iconfont {
display: inline-block;
margin: 0 4px 0 0;
position: relative;
color: rgba(51, 51, 51, 0.68);
font-size: 16px;
}
.ys-footer__content .left-part .icon-clock-fill {
top: 1px;
}
.ys-footer__content .left-part .icon-email-fill {
top: 2px;
}
.ys-footer__content .center-part {
display: flex;
padding: 6px 0 0 0;
}
.ys-footer__content .content-link {
min-width: 90px;
}
.ys-footer__content .content-link + .content-link {
margin: 0 0 0 80px;
}
.ys-footer__content .content-link span {
font-size: 16px;
color: var(--ys-color-text-000);
font-weight: 600;
}
.ys-footer__content .children-link-wrap {
list-style: none;
padding-inline-start: 0;
margin: 22px 0 0 0;
}
.ys-footer__content .children-link-wrap a {
font-size: 14px;
line-height: 17px;
color: var(--ys-color-text-100);
text-decoration: none;
}
.ys-footer__content .children-link-wrap li + li {
margin: 16px 0 0 0;
}
.ys-footer__content .children-link-wrap a:hover {
color: var(--ys-color-primary);
}
.ys-footer__content .right-part {
display: flex;
/* gap: 12px; */
}
.ys-footer__content .right-part .part-item:first-of-type{
margin-right: 12px;
}
.ys-footer__content .right-part .part-item {
padding: 10px 12px 12px;
text-align: center;
font-size: 14px;
background-color: var(--ys-color-white);
height: fit-content;
}
.ys-footer__content .right-part img {
width: 82px;
height: 82px;
}
.ys-footer__content .right-part p {
margin-bottom: 4px;
}
.ys-footer__friendly {
padding: 16px var(--ys-page-padding);
margin: 0 auto;
border-bottom: 1px solid #eee;
}
.ys-footer__friendly span {
font-size: 16px;
line-height: 32px;
color: var(--ys-color-text-000);
}
.ys-footer__friendly ul {
display: inline-flex;
list-style: none;
padding-inline-start: 0;
margin: 0;
flex-wrap: wrap;
}
.ys-footer__friendly a {
padding: 4px 10px;
position: relative;
font-size: 14px;
color: var(--ys-color-text-100);
text-decoration: none;
}
.ys-footer__friendly a:hover {
color: var(--ys-color-primary);
}
.ys-footer__friendly li + li a:before {
content: '|';
color: var(--ys-color-text-300);
position: absolute;
left: -2px;
top: 4px;
}
.ys-footer__end {
box-sizing: border-box;
height: 76px;
padding: 16px var(--ys-page-padding);
display: flex;
align-items: center;
justify-content: space-between;
background: #202228;
}
.ys-footer__end .end-link {
font-size: 14px;
color: #fff;
}
.ys-footer__end .end-link a {
position: relative;
text-decoration: none;
color: #fff;
margin-right: 10px;
}
.ys-footer__end .end-link a:not(:last-child)::after {
content: '';
position: absolute;
width: 2px;
height: 15px;
right: -9px;
top: 0;
bottom: 0;
margin: auto;
background-color: var(--ys-color-white);
}
.ys-footer__end .right-part {
display: flex;
align-items: center;
/* gap: 10px; */
}
.ys-footer__end .right-part img {
height: 42px;
max-width: 110px;
}
.ys-footer__end .copyright-wrap {
margin-right: 10px;
display: inline-flex;
flex-direction: column;
align-items: flex-end;
justify-content: space-around;
/* gap: 6px; */
font-size: 12px;
color: #fff;
opacity: 0.7;
}
.ys-footer__end .copyright-wrap a{
color: #fff;
text-decoration: none;
margin-bottom: 6px;
}.ys-rightNav {
position: fixed;
right: 24px;
bottom: 90px;
text-align: center;
z-index: 99;
font-size: 14px;
line-height: 16px;
}
.ys-rightNav .service {
background-color: var(--ys-color-assist);
padding: 12px;
width: 56px;
color: var(--ys-color-white);
border-radius: 28px;
box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
cursor: pointer;
}
.ys-rightNav .service img {
width: 32px;
height: 32px;
border-radius: 50%;
margin-bottom: 6px;
}
.ys-rightNav .circle {
margin-top: 10px;
position: relative;
width: 56px;
height: 56px;
border-radius: 50%;
border: 1px solid var(--ys-color-background-100);
background: linear-gradient(0deg, var(--ys-color-white) 0%, var(--ys-color-white) 100%),
linear-gradient(180deg, var(--ys-color-background-050) 0%, #fefefe 100%);
box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
padding: 19px 12px 12px;
cursor: pointer;
display: block;
text-decoration: none;
}
.ys-rightNav .circle i {
font-size: 24px;
color: var(--ys-color-text-000);
}
.ys-rightNav .circle .text-cover {
position: absolute;
width: 56px;
height: 56px;
z-index: 2;
background-color: var(--ys-color-primary);
color: var(--ys-color-white);
left: -1px;
top: -1px;
border-radius: 50%;
padding: 12px;
transition: all .2s;
transform-origin: center;
transform: scale(0);
}
.ys-rightNav .circle:hover .text-cover,
.ys-rightNav .circle:hover .code-cover {
transform: scale(1);
}
.ys-rightNav #backTop {
display: none;
}
.ys-rightNav #backTop i {
transform: rotate(-90deg);
display: block;
font-weight: 600;
}
.ys-rightNav .code-cover {
position: absolute;
border-radius: 4px;
border: 1px solid var(--ys-color-background-100);
background: linear-gradient(0deg, #FFF 0%, #FFF 100%), linear-gradient(180deg, #F5F5F5 0%, #FEFEFE 100%);
box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.10);
right: 74px;
top: 0;
bottom: 0;
width: 229px;
height: fit-content;
margin: auto;
transition: all .2s;
transform-origin: right;
transform: scale(0);
}
.ys-rightNav .code-cover.narrow {
width: auto;
}
.ys-rightNav .code-cover .code-item {
display: flex;
align-items: center;
padding: 12px;
border-bottom: 1px solid var(--ys-color-background-100);
font-size: 12px;
color: var(--ys-color-text-300);
}
.ys-rightNav .code-cover .code-item:last-child {
border-bottom: 0;
}
.ys-rightNav .code-cover img {
width: 82px;
height: 82px;
margin-right: 10px;
}
.ys-rightNav .code-cover .code-item i {
font-size: 18px;
color: var(--ys-color-success);
margin-right: 4px;
}
.ys-rightNav .code-cover .code-item span {
color: var(--ys-color-text-000);
font-size: 14px;
}
.ys-rightNav .code-cover p {
display: flex;
align-items: center;
justify-content: center;
margin-top: 14px;
}
.ys-rightNav .code-cover .code-row {
display: block;
text-decoration: none;
font-size: 14px;
padding: 12px 20px;
white-space: nowrap;
color: var(--ys-color-text-000);
}
.ys-rightNav .code-cover .code-row + .code-row {
/* padding-top: 0; */
border-top: 1px solid var(--ys-color-text-700);
}
#newBridge .nb-icon-wrap {
display: none;
}
@media only screen and (max-height: 680px) {
.ys-rightNav {
bottom: 70px;
}
.ys-rightNav .service {
width: 52px;
}
.ys-rightNav .circle {
width: 52px;
height: 52px;
padding: 17px 12px 12px;
}
.ys-rightNav .circle i {
font-size: 22px;
}
.ys-rightNav .circle .text-cover {
left: -2px;
top: -2px;
}
}