/* 快捷导航 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 */
/* 解决方案 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);
}
/* 解决方案 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) {
/* 解决方案 start */
.ys-header__case .case-item{
width: calc(16% - 40px);
}
/* 解决方案 end */
}
@media only screen and (max-width: 1500px) {
.ys-header__nav {
max-width: 500px;
}
}
@media only screen and (max-width: 1440px) {
/* 解决方案 start */
.ys-header__case {
padding-right: 40px;
}
.ys-header__case .case-item{
width: calc(16.66% - 20px);
margin-right: 0px;
}
/* 解决方案 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);
}
}.ys-banner {
width: 100%;
position: relative;
/* 590 / 1920 = 30.72196 */
height: 30.7296vw;
overflow: hidden;
}
.ys-banner .banner-slide img,
.ys-banner .banner-slide video {
width: 100%;
height: 100%;
object-fit: cover;
}
.ys-banner .banner-slide .banner-desc {
position: absolute;
top: 0;
bottom: 0;
left: calc((100vw - var(--ys-content-width)) / 2);
width: 600px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
color: var(--ys-color-white);
}
.ys-banner .banner-slide .banner-desc h2 {
font-weight: 600;
font-size: 40px;
line-height: 52px;
}
.ys-banner .banner-slide .banner-desc p {
font-size: 16px;
margin-top: 16px;
color: rgba(255, 255, 255, 0.8);
}
.ys-banner .banner-slide .banner-desc button {
border: 1px solid var(--ys-color-assist);
background-color: var(--ys-color-strong);
color: var(--ys-color-white);
height: 44px;
line-height: 44px;
min-width: 124px;
font-size: 16px;
line-height: 1;
margin-top: 70px;
cursor: pointer;
border-radius: 4px;
padding: 1px 10px;
}
.ys-banner .banner-slide .banner-desc button a {
display: block;
text-decoration: none;
color: var(--ys-color-white);
}
.ys-banner .banner-slide .banner-desc button:hover {
/* background-color: var(--ys-color-white); */
/* color: var(--ys-color-text-000); */
opacity: 0.82;
}
.ys-banner .banner-slide .banner-desc button:hover a {
color: var(--ys-color-text-000);
}
.ys-banner .banner-slide__video {
width: 100%;
height: 100%;
object-fit: fill;
pointer-events: none;
}
.ys-banner .ys-banner__indicator {
position: absolute;
bottom: 30px;
left: 0;
right: 0;
display: flex;
justify-content: center;
z-index: 2;
}
.ys-banner__indicator .swiper-pagination-bullet {
display: flex;
margin: 0 8px;
width: 8px;
height: 8px;
border-radius: 4px;
background-color: rgba(255, 255, 255, 0.7);
cursor: pointer;
transition: all 1s;
border: 1px solid rgba(51, 51, 51, 0.5);
}
.ys-banner__indicator .swiper-pagination-bullet.swiper-pagination-bullet-active {
background-color: rgba(251, 251, 252, 0.8);
border-color: rgba(0, 0, 0, 0.1);
width: 28px;
}
.ys-banner .btn {
position: absolute;
top: 0;
bottom: 0;
margin: auto;
width: 50px;
height: 50px;
background-color: rgba(0, 0, 0, 0.5);
color: var(--ys-color-white);
cursor: pointer;
text-align: center;
border-radius: 50%;
line-height: 50px;
opacity: 0;
transition: all 0.2s;
z-index: 2;
}
.ys-banner:hover .btn {
opacity: 1;
}
.ys-banner .btn i {
font-size: 30px;
}
.ys-banner #prev {
left: 20px;
transform: rotate(180deg);
}
.ys-banner #next {
right: 20px;
}
@media only screen and (max-width: 1400px) {
.ys-banner .banner-slide .banner-desc {
width: 500px;
}
}
@media only screen and (max-width: 1200px) {
.ys-banner .banner-slide .banner-desc {
left: 10px;
}
}/* 首页 */
.ys-index,
.ys-banner {
--ys-content-width: 1300px;
--ys-product-width: 310px;
--ys-content-height-max: 764px;
--ys-product-img-w: 238px;
--ys-solution-img-w: 186px;
--ys-solution-img-h: 124px;
--ys-new-img-w: 180px;
--ys-strength-img-w: 310px;
width: 100%;
min-width: var(--ys-content-width);
}
@media only screen and (max-width: 1440px) {
.ys-index,
.ys-banner {
--ys-content-width: 1200px;
--ys-product-width: 286px;
--ys-content-height-max: 747px;
--ys-product-img-w: 200px;
--ys-solution-img-w: 180px;
--ys-solution-img-h: 120px;
--ys-new-img-w: 163px;
--ys-strength-img-w: 285px;
}
}
.ys-index .ys-index__title {
font-weight: 600;
font-size: 30px;
}
.ys-index .ys-index__subtitle {
font-size: 14px;
color: var(--ys-color-text-300);
margin-top: 16px;
}
.ys-index .ys-index__more {
height: 38px;
width: 70px;
text-align: center;
line-height: 38px;
border: 1px solid var(--ys-color-text-700);
display: block;
font-size: 14px;
color: var(--ys-color-text-100);
border-radius: 24px;
text-decoration: none;
}
.ys-index .ys-index__more:hover {
color: var(--ys-color-white);
background-color: var(--ys-color-primary);
}
/* 熊猫体育app官方入口
start */
.ys-index__product {
margin: 0 auto;
width: var(--ys-content-width);
padding: 60px 0 80px;
}
.ys-index__product .ys-product__title {
display: flex;
justify-content: space-between;
align-items: center;
}
.ys-index__product .product-list {
margin-top: 30px;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 16px;
}
.ys-index__product .product-item {
display: block;
width: var(--ys-product-width);
height: 308px;
background-image: url(/asset/img/index/product-bg.png);
background-repeat: no-repeat;
background-size: cover;
text-align: center;
position: relative;
padding: 16px 36px 36px;
overflow: hidden;
cursor: pointer;
}
.ys-index__product .product-item .product-img {
width: var(--ys-product-img-w);
height: var(--ys-product-img-w);
object-fit: contain;
margin: 0 auto;
mix-blend-mode: darken;
}
.ys-index__product .product-item .product-title {
margin-top: 32px;
font-size: 16px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
position: absolute;
bottom: 30px;
left: 36px;
right: 36px;
font-weight: 400;
color: var(--ys-color-text-000);
}
.ys-index__product .product-item .product-cover {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
transform: translateY(308px);
transition: all 0.2s;
transform-origin: bottom;
background: linear-gradient(
360deg,
rgba(4, 14, 23, 0.7) 28.9%,
rgba(1, 5, 8, 0) 100%
);
width: 100%;
height: 308px;
color: var(--ys-color-white);
}
.ys-index__product .product-item:hover .product-cover {
transform: translate(0);
}
.ys-index__product .product-item .product-cover .product-title {
font-weight: 600;
width: fit-content;
margin: auto;
color: var(--ys-color-white);
}
.ys-index__product .product-item .product-desc {
font-size: 14px;
line-height: 24px;
width: 230px;
margin: auto;
position: absolute;
left: 0;
right: 0;
bottom: 96px;
color: rgba(255, 255, 255, 0.9);
}
.ys-index__product .product-item .product-slide {
background: var(--ys-color-assist);
width: 30px;
height: 3px;
margin: auto;
position: absolute;
left: 0;
right: 0;
bottom: 70px;
}
.ys-index__product .product-item .product-title::after {
background-color: var(--ys-color-white);
}
/* 熊猫体育app官方入口
end */
/* 内容中心 start */
.ys-index__content {
padding: 60px calc((100% - var(--ys-content-width)) / 2) 80px;
background-color: #f3f5f8;
background-image: url(/asset/img/index/content-bg-1.png);
background-repeat: no-repeat;
background-position: top right;
}
.ys-index__content .ys-index__title,
.ys-index__content .ys-index__subtitle {
text-align: center;
}
.ys-index__content .content-wrap {
margin-top: 30px;
display: flex;
}
.ys-index__content .content-wrap > div {
width: calc(50% - 10px);
height: fit-content;
}
.ys-index__content .content-solution {
margin-right: 20px;
max-height: var(--ys-content-height-max);
overflow: hidden;
}
.ys-index__content .content-solution,
.ys-index__content .content-product {
padding: 24px 30px 36px;
border-radius: 4px;
background-color: var(--ys-color-white);
}
.ys-index__content .content-title {
display: flex;
align-items: center;
justify-content: space-between;
}
.ys-index__content .solution-item {
position: relative;
display: flex;
align-items: center;
padding: 24px 0 20px;
}
.ys-index__content .solution-img {
width: var(--ys-solution-img-w);
height: var(--ys-solution-img-h);
margin-right: 20px;
border-radius: 4px;
}
.ys-index__content .solution-info {
width: calc(100% - var(--ys-solution-img-w) - 20px);
}
.ys-index__content .solution-title {
color: var(--ys-color-text-000);
display: inline-block;
text-decoration: none;
font-weight: 600;
font-size: 16px;
margin-bottom: 8px;
max-width: 100%;
}
.ys-index__content .solution-desc {
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;
}
.ys-index__content .solution-link {
display: inline-block;
margin-top: 20px;
font-size: 12px;
color: var(--ys-color-primary);
text-decoration: none;
}
.ys-index__content .content-news {
padding: 24px 0 16px;
border-radius: 4px;
background-color: var(--ys-color-white);
}
.ys-index__content .content-news .content-title {
padding: 0 30px 14px 34px;
border-bottom: 1px solid var(--ys-color-background-100);
}
.ys-index__content .content-tabs {
white-space: nowrap;
}
.ys-index__content .content-tabs div {
position: relative;
font-weight: 600;
font-size: 20px;
display: inline-block;
margin-right: 54px;
cursor: pointer;
}
.ys-index__content .content-tabs div:hover,
.ys-index__content .content-tabs .tab-active {
color: var(--ys-color-primary);
}
.ys-index__content .content-tabs .tab-active::after {
content: "";
position: absolute;
left: 0;
right: 0;
bottom: -20px;
width: 100%;
height: 2px;
background-color: var(--ys-color-primary);
}
.ys-index__content .content-product {
padding-bottom: 30px;
margin-bottom: 20px;
height: calc(var(--ys-new-img-w) + 135px);
overflow-y: hidden;
}
.ys-index__content .product-wrap {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-top: 16px;
overflow-x: auto;
}
.ys-index__content .product-item {
width: var(--ys-new-img-w);
position: relative;
}
.ys-index__content .product-img {
width: var(--ys-new-img-w);
height: var(--ys-new-img-w);
border-radius: 4px;
display: block;
}
.ys-index__content .product-title {
text-decoration: none;
display: inline-block;
color: var(--ys-color-text-000);
font-size: 14px;
margin-top: 6px;
max-width: 100%;
}
.ys-index__content .product-title h4 {
font-weight: 400;
}
.ys-index__content .product-tag {
position: absolute;
top: 0;
left: 0;
color: var(--ys-color-white);
background-color: var(--ys-color-assist);
border-radius: 4px;
padding: 2px 5px;
font-size: 12px;
}
.ys-index__content .content-box .content-tabs {
padding: 18px 0;
border-bottom: 1px solid var(--ys-color-text-700);
text-align: center;
margin-bottom: 38px;
}
.ys-index__content .content-box .content-tabs div {
font-size: 24px;
line-height: 42px;
margin-right: 0;
margin: 0 40px;
}
.ys-index__content .solution-list {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}
.ys-index__content .content-solution-item {
background-color: var(--ys-color-white);
border-radius: 6px;
border: 1px solid var(--ys-color-background-100);
overflow: hidden;
}
.ys-index__content .content-solution-item:hover {
background-color: var(--ys-color-primary);
color: var(--ys-color-white);
}
.ys-index__content .content-solution-item:hover .content-solution-title {
color: var(--ys-color-white);
}
.ys-index__content .content-solution-info {
padding: 25px 62px 25px 24px;
}
.ys-index__content .content-solution-img {
display: block;
width: 100%;
height: 278px;
}
.ys-index__content .content-solution-img img {
object-fit: cover;
}
.ys-index__content .content-solution-title {
color: var(--ys-color-text-000);
text-decoration: none;
font-size: 20px;
font-weight: 600;
line-height: 24px;
}
.ys-index__content .content-solution-desc {
font-size: 16px;
font-weight: 400;
line-height: 30px;
margin-top: 12px;
}
.ys-index__content .content-button {
background-color: var(--ys-color-assist);
color: var(--ys-color-white);
height: 46px;
width: 188px;
font-size: 16px;
border: 0;
outline: none;
cursor: pointer;
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
margin: 40px auto 0;
text-decoration: none;
}
.ys-index__content .content-button:hover {
background-color: var(--ys-color-warning);
}
.ys-index__content .content-button i {
font-size: 20px;
margin-right: 4px;
}
.ys-index__content .product-list {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
}
.ys-index__content .content-product-item {
position: relative;
background-color: var(--ys-color-white);
height: 282px;
padding: 24px 24px 10px;
border-radius: 4px;
/* text-align: center; */
overflow: hidden;
border: 1px solid transparent;
box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
transition: 0.3s;
}
.ys-index__content .content-product-item:hover {
border-color: rgba(18, 56, 216, 0.4);
box-shadow: 0px 4px 20px 0px rgba(37, 67, 241, 0.14);
}
.ys-index__content .content-product-item a {
display: block;
text-decoration: none;
max-width: 100%;
}
.ys-index__content .content-product-item .content-product-desc {
display: block;
}
.ys-index__content .content-product-item a img {
object-fit: contain;
}
.ys-index__content .content-product-title {
color: var(--ys-color-text-000);
font-size: 16px;
font-weight: 600;
line-height: 25px;
height: 50px;
}
.ys-index__content .content-product-item:hover .content-product-title {
color: var(--ys-color-primary);
}
.ys-index__content .content-product-desc {
font-size: 14px;
font-weight: 400;
line-height: 20px;
margin: 6px 0;
color: var(--ys-color-text-300);
}
.ys-index__content .content-product-img {
width: 100%;
height: 164px;
margin: auto;
}
.ys-index__content .content-product-item.double {
grid-column: span 2;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 0 0 40px;
text-align: left;
}
.ys-index__content .content-product-item.double .content-product-info {
width: 238px;
}
.ys-index__content .content-product-item.double .content-product-desc {
margin-top: 16px;
}
.ys-index__content .content-product-item.double .content-product-desc p {
white-space: normal;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
word-break: break-all;
}
.ys-index__content .content-product-item.double .content-product-desc::before {
content: "";
display: inline-block;
width: 36px;
height: 2px;
margin-bottom: 16px;
background-color: var(--ys-color-strong);
}
.ys-index__content .content-product-item.double .content-product-img {
flex: 1;
height: auto;
margin: 0;
}
.ys-index__content a.product-button {
width: 112px;
padding: 10px 0;
margin-top: 36px;
text-align: center;
color: #1238d8;
border-color: #1238d880;
border-radius: 4px;
}
.ys-index__content .content-product-item.double .product-button {
display: block !important;
}
.ys-index__content a.product-button:hover {
border-color: var(--ys-color-primary);
}
.ys-index__content .product-badge {
position: absolute;
top: 4px;
right: -16px;
width: 66px;
padding: 2px 0;
border-radius: 3px;
font-size: 12px;
font-weight: 600;
line-height: 17px;
text-align: center;
color: var(--ys-color-white);
background-color: var(--ys-color-strong);
transform: rotate(43deg);
}
/* 内容中心 end */
/* 解决方案 start */
.ys-index__content.ys-index__content--solution {
background-image: url(/asset/img/index/content-bg.png);
}
.ys-index__content .tab-solution-warp {
margin-top: 30px;
}
/* 解决方案 end */
/* 产品上新 start */
.ys-index__content.ys-index__content--product {
background-image: none;
background: linear-gradient(180deg, #ffffff 3%, #f3f5f8 78%);
}
.ys-index__content .product-list {
margin-top: 40px;
}
/* 产品上新 end */
/* 服务流程 start */
.ys-index__process {
width: var(--ys-content-width);
margin: auto;
text-align: center;
padding-top: 80px;
}
.ys-index__process .ys-index__subtitle {
line-height: 28px;
padding: 12px 0 30px;
}
.ys-index__process .process__list {
margin: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: space-between;
list-style: none;
}
.ys-index__process .process__item {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 224px;
height: 224px;
border-radius: 4px;
background-color: #78c59b;
color: var(--ys-color-white);
padding: 0 13px;
}
.ys-index__process .iconfont {
font-size: 54px;
line-height: 46px;
}
.ys-index__process .process__title {
font-size: 16px;
font-weight: 600;
line-height: 23px;
padding: 20px 0 8px;
margin: 0;
}
.ys-index__process .process__desc {
font-size: 14px;
font-weight: normal;
line-height: 24px;
}
/* 服务流程 end */
/* 工厂实力 start */
.ys-index__strength {
padding: 80px 0 0;
margin: 0 auto;
width: var(--ys-content-width);
}
.ys-index__strength .ys-index__title,
.ys-index__strength .ys-index__subtitle {
text-align: center;
}
.ys-index__strength .strength-wrap {
overflow: hidden;
margin-top: 30px;
}
.ys-index__strength .strength-item {
width: var(--ys-strength-img-w);
height: 430px;
border: 1px solid var(--ys-color-background-100);
border-radius: 4px;
position: relative;
}
.ys-index__strength .strength-item:hover,
.ys-index__strength .strength-item:hover .strength-content {
background-color: var(--ys-color-primary);
/* transition: background 0.2s linear; */
}
.ys-index__strength .strength-item:hover a,
.ys-index__strength .strength-item:hover p {
color: var(--ys-color-white) !important;
}
.ys-index__strength .strength-item:hover .strength-desc {
-webkit-line-clamp: unset;
max-height: 230px;
}
.ys-index__strength .strength-item:hover img {
transform: scale(1.1);
}
.ys-index__strength .strength-img {
display: block;
width: calc(var(--ys-strength-img-w) - 2px);
height: var(--ys-strength-img-w);
margin: auto;
}
.ys-index__strength .strength-content {
position: absolute;
bottom: 0;
padding-bottom: 20px;
}
.ys-index__strength .strength-title {
display: inline-block;
text-decoration: none;
margin: 20px 20px 6px;
font-size: 16px;
font-weight: 600;
color: var(--ys-color-text-000);
}
.ys-index__strength .strength-desc {
font-size: 14px;
color: var(--ys-color-text-300);
line-height: 22px;
margin: 0 20px;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
max-height: 44px;
transition: max-height 0.4s linear;
}
.ys-index__strength .strength-arrow {
display: flex;
justify-content: center;
margin-top: 36px;
}
.ys-index__strength .strength-arrow .arrow-item {
width: 48px;
height: 48px;
border-radius: 50%;
border: 1px solid var(--ys-color-text-700);
margin: 0 8px;
color: var(--ys-color-text-000);
cursor: pointer;
text-align: center;
line-height: 48px;
}
.ys-index__strength .strength-arrow .arrow-item:hover {
border-color: var(--ys-color-text-000);
background-color: var(--ys-color-text-000);
color: var(--ys-color-white);
}
.ys-index__strength .strength-arrow .arrow-item i {
font-size: 22px;
display: block;
}
.ys-index__strength .strength-arrow .arrow-item:first-child i {
transform: rotate(180deg);
}
/* 工厂实力 end */
/* 强大能力 start */
.ys-index__power {
padding: 80px 0;
margin: 80px auto 0;
width: var(--ys-content-width);
background-image: url(/asset/img/index/power-bg.png);
background-repeat: no-repeat;
background-size: cover;
text-align: center;
}
.ys-index__power .power-data {
margin-top: 60px;
display: flex;
justify-content: space-around;
}
.ys-index__power .power-num {
display: flex;
justify-content: center;
color: var(--ys-color-assist);
font-weight: 600;
min-width: 156px;
}
.ys-index__power .power-num div:first-child {
font-size: 40px;
line-height: 44px;
}
.ys-index__power .power-num div:last-child {
font-size: 18px;
margin-left: 4px;
margin-right: -16px;
}
.ys-index__power .power-title {
font-size: 14px;
color: var(--ys-color-text-100);
margin-top: 12px;
}
/* 强大能力 end */
@media only screen and (max-width: 1440px) {
.ys-index__content .content-solution-info {
padding: 20px 51px 20px 20px;
}
.ys-index__content .content-solution-img {
height: 230px;
}
.ys-index__content .content-product-item {
height: 268px;
}
.ys-index__content .content-product-img {
height: 148px;
}
}
.ys-index__reason .ys-index__title {
font-weight: 600;
font-size: 30px;
}
.ys-index__reason .ys-index__subtitle {
font-size: 14px;
color: var(--ys-color-text-300);
margin-top: 16px;
}
/* 选择电子谷 start */
.ys-index__reason {
padding: 80px 0;
margin: 0 auto;
width: var(--ys-content-width);
text-align: center;
}
.ys-index__reason .reason-tabs {
display: flex;
margin: 32px 0;
justify-content: center;
}
.ys-index__reason .tabs-item {
height: 46px;
line-height: 46px;
font-size: 16px;
font-weight: 600;
margin: 0 35px;
border-bottom: 2px solid transparent;
cursor: pointer;
}
.ys-index__reason .tabs-item:hover,
.ys-index__reason .tabs-item.active {
color: var(--ys-color-primary);
border-color: var(--ys-color-primary);
}
.ys-index__reason .reason-wrap {
display: none;
box-shadow: 0px 0px 20px 0px #0000001A;
height: 480px;
}
.ys-index__reason .reason-wrap.show{
display: flex;
}
.ys-index__reason .reason-video {
width: 56%;
}
.ys-index__reason .reason-video img {
width: 100%;
height: 100%;
object-fit: contain;
}
.ys-index__reason .reason-info {
width: 44%;
display: flex;
flex-direction: column;
justify-content: center;
padding: 0 50px;
text-align: left;
}
.ys-index__reason .reason-title {
font-size: 24px;
font-weight: 600;
margin-bottom: 36px;
}
.ys-index__reason .reason-desc {
font-size: 14px;
color: var(--ys-color-text-100);
line-height: 28px;
min-height: 140px;
}
.ys-index__reason .reason-button {
background-color: var(--ys-color-assist);
color: var(--ys-color-white);
height: 46px;
width: 188px;
font-size: 16px;
border: 0;
outline: none;
cursor: pointer;
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
margin: 50px auto 0;
text-decoration: none;
}
.ys-index__reason .reason-button i {
font-size: 24px;
margin-right: 4px;
}
.ys-index__reason .reason-button:hover {
background-color: var(--ys-color-warning);
}
@media only screen and (max-width: 1280px) {
.ys-index__reason .tabs-item {
margin: 0 30px;
}
}
/* 选择电子谷 end */
/* 客户说 start */
.ys-index__say {
padding: 80px calc((100% - var(--ys-content-width)) / 2);
text-align: center;
background: linear-gradient(178.24deg, #F3F5F8 1.49%, rgba(243, 245, 248, 0) 77.73%);
}
.ys-index__say .say-wrap {
display: flex;
margin-top: 30px;
align-items: center;
}
.ys-index__say .say-arrow {
width: 48px;
height: 48px;
border-radius: 50%;
border: 1px solid var(--ys-color-text-700);
color: var(--ys-color-text-000);
cursor: pointer;
text-align: center;
line-height: 48px;
display: block;
}
.ys-index__say .say-arrow:hover {
background-color: var(--ys-color-text-000);
color: var(--ys-color-white);
}
.ys-index__say .say-arrow.arrow-left {
transform: rotate(180deg);
}
.ys-index__say .say-arrow i {
font-size: 22px;
}
.ys-index__say .say-banner {
width: calc(100% - 300px);
margin: 0 100px;
overflow: hidden;
}
.ys-index__say .say-logo {
height: 50px;
width: 124px;
margin: 0 auto 30px;
}
.ys-index__say .say-logo img{
height: 50px;
mix-blend-mode: darken;
margin: auto;
}
.ys-index__say .say-desc {
font-size: 16px;
line-height: 32px;
margin-bottom: 30px;
}
.ys-index__say .say-name {
font-size: 14px;
color: var(--ys-color-text-300);
}
.ys-index__say .say-company {
display: flex;
justify-content: center;
flex-wrap: wrap;
/* gap: 100px; */
margin: 80px -50px 0;
}
.ys-index__say .say-company img {
width: 99px;
height: 40px;
margin: 15px 50px;
}
/* 客户说 end */.ys-index__content.ys-index__information {
background-image: none;
background: linear-gradient(179deg, #f3f5f8 1%, #ffffff 77%);
}
.ys-index__content .ys-index__title {
font-weight: 600;
font-size: 30px;
}
.ys-index__content .ys-index__subtitle {
font-size: 14px;
color: var(--ys-color-text-300);
margin-top: 16px;
}
.ys-index__content .content-wrap-item:hover img,
.ys-index__content .product-item:hover img {
transform: scale(1.1);
}
.ys-index__content .content-wrap-item:hover .hover--underline-primary,
.ys-index__content .product-item:hover .hover--underline-primary {
color: var(--ys-color-primary);
}
.ys-index__content .information-warp {
display: flex;
}
.ys-index__content .information-type {
width: calc(33.33% - 20px);
}
.ys-index__content .information-type + .information-type {
margin-left: 40px;
}
.ys-index__content .information-item + .information-item {
margin-left: 20px;
}
.ys-index__content .information-title {
display: inline-flex;
text-decoration: none;
align-items: center;
font-size: 20px;
font-weight: 600;
line-height: 24px;
color: var(--ys-color-text-000);
margin-bottom: 20px;
}
.ys-index__content .information-title:hover {
color: var(--ys-color-primary);
}
.ys-index__content .information-title i {
font-size: 18px;
margin-left: 9px;
}
.ys-index__content .information-article {
position: relative;
display: block;
width: 350px;
height: 222px;
text-decoration: none;
color: var(--ys-color-white);
border-radius: 4px;
}
.ys-index__content .information-article + .information-article {
margin-top: 12px;
}
.ys-index__content .information-article img {
object-fit: cover;
}
.ys-index__content .information-article__info {
position: absolute;
z-index: 1;
bottom: 0;
left: 0;
width: 100%;
background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, #000000 100%);
padding: 38px 23px 16px 16px;
}
.ys-index__content .information-article__info:hover + img {
transform: scale(1.1);
}
.ys-index__content .information-article__title {
display: inline-block;
font-size: 14px;
font-weight: 400;
line-height: 20px;
}
.ys-index__content .information-article__title::after {
background-color: var(--ys-color-white);
}
.ys-index__content .information-article__time {
color: var(--ys-color-text-300);
font-size: 12px;
font-weight: 400;
line-height: 18px;
}
.ys-index__content .information-article__time i {
font-size: 12px;
}
.ys-index__content .news-wrap {
padding: 4px 30px 0;
}
.ys-index__content .news-item {
position: relative;
padding-bottom: 16px;
}
.ys-index__content .news-img {
display: block;
width: 100%;
height: 238px;
border-radius: 4px;
margin-bottom: 16px;
position: relative;
overflow: hidden;
}
.ys-index__content .news-img img {
width: 100%;
height: 100%;
object-fit: cover;
}
.ys-index__content .news-img__hover {
position: absolute;
transform: translateY(100%);
transition: all 0.2s;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(
0deg,
rgba(4, 14, 23, 0.7) 28%,
rgba(1, 5, 8, 0) 100%
);
color: var(--ys-color-white);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: 16px;
font-weight: 400;
}
.ys-index__content .news-img__hover h4 {
font-size: 20px;
font-weight: 600;
line-height: 24px;
}
.ys-index__content .news-img__hover p {
font-size: 14px;
font-weight: normal;
line-height: 24px;
opacity: 0.8;
margin: 8px 0 32px;
}
.ys-index__content .news-img__hover .c-button--primary {
background-color: var(--ys-color-strong);
border-color: var(--ys-color-strong);
padding: 7px 14px;
border-radius: 4px;
font-size: 14px;
line-height: 16px;
}
.ys-index__content .news-img:hover .news-img__hover {
transform: translateY(0);
}
.ys-index__content .news-info {
display: flex;
align-items: center;
}
.ys-index__content .news-title {
display: inline-block;
text-decoration: none;
max-width: 100%;
}
.ys-index__content .news-title h4 {
display: inline;
font-size: 14px;
font-weight: normal;
line-height: 18px;
color: var(--ys-color-text-000);
}
.ys-index__content .news-title:hover h4 {
color: var(--ys-color-primary);
}
.ys-index__content .news-time {
font-size: 14px;
font-weight: normal;
line-height: 18px;
color: var(--ys-color-text-100);
margin-right: 8px;
}/* 网站底部 */
.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;
}
}