1002 lines
19 KiB
CSS
1002 lines
19 KiB
CSS
|
/*导航部分*/
|
||
|
.v1Header{
|
||
|
width: 100%;
|
||
|
height: 68px;
|
||
|
position: fixed;
|
||
|
display: flex;
|
||
|
z-index: 100;
|
||
|
align-items: center;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
.v1HeaderBg{
|
||
|
-webkit-box-shadow: 0 1px 4px rgb(0 0 0 / 10%);
|
||
|
-moz-box-shadow: 0 1px 4px rgba(0,0,0,0.1);
|
||
|
box-shadow: 0 1px 4px rgb(0 0 0 / 10%);
|
||
|
-webkit-transition: all .5s;
|
||
|
-moz-transition: all .5s;
|
||
|
-o-transition: all .5s;
|
||
|
transition: all .5s;
|
||
|
background: rgba(32,41,53,0.8);
|
||
|
-webkit-backdrop-filter: saturate(5) blur(20px);
|
||
|
backdrop-filter: saturate(5) blur(20px);
|
||
|
}
|
||
|
.v1Wrap {
|
||
|
width: 1200px;
|
||
|
min-width: 1200px;
|
||
|
margin: 0 auto;
|
||
|
zoom: 1;
|
||
|
}
|
||
|
.v1Logo{
|
||
|
color: #fff;
|
||
|
font-size: 26px;
|
||
|
margin-left: 10px;
|
||
|
}
|
||
|
.v1HeaderBg .v1Logo{
|
||
|
height: 60px;
|
||
|
color: #0188fb;
|
||
|
}
|
||
|
.v1Logo a{
|
||
|
height: inherit;
|
||
|
text-decoration: none;
|
||
|
display: flex;
|
||
|
vertical-align: middle;
|
||
|
color: #fff;
|
||
|
align-items: center;
|
||
|
flex-wrap: wrap;
|
||
|
}
|
||
|
.v1Logo a span{
|
||
|
font-size: 16px;
|
||
|
}
|
||
|
.v1Logo a i{
|
||
|
margin: 0px 20px;
|
||
|
font-size: 18px;
|
||
|
color: #a7a7a7;
|
||
|
font-style: normal;
|
||
|
}
|
||
|
.v1Logo a:hover{
|
||
|
text-decoration: none;
|
||
|
color: #fff;
|
||
|
}
|
||
|
.v1Menu{
|
||
|
-webkit-transition: all .5s;
|
||
|
-moz-transition: all .5s;
|
||
|
-o-transition: all .5s;
|
||
|
transition: all .5s;
|
||
|
display: flex;
|
||
|
height: 68px;
|
||
|
align-items: center;
|
||
|
padding-right: 10px;
|
||
|
}
|
||
|
.v1HeaderBg .v1Menu{
|
||
|
margin-top: 0px;
|
||
|
}
|
||
|
.v1Menu li {
|
||
|
float: left;
|
||
|
display: inline;
|
||
|
margin: 5px 35px 0 0;
|
||
|
position: relative;
|
||
|
font-size: 15px;
|
||
|
padding: 15px 0px;
|
||
|
}
|
||
|
.v1Menu li a:hover{
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
.v1Menu .nav-item:hover{
|
||
|
color: #3369FF;
|
||
|
text-decoration: none;
|
||
|
border-bottom:3px solid #fff;
|
||
|
}
|
||
|
.v1Menu .nav-item.on{
|
||
|
border-bottom:3px solid #fff;
|
||
|
-webkit-transition: all .2s;
|
||
|
-moz-transition: all .2s;
|
||
|
-o-transition: all .2s;
|
||
|
transition: all .2s;
|
||
|
}
|
||
|
.v1Menu .nav-item a{
|
||
|
color: #fff;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
/* 当添加了'visible'类后,导航栏将显示 */
|
||
|
.visible {
|
||
|
display: block!important;
|
||
|
}
|
||
|
.menuico{
|
||
|
margin-right: 20px;
|
||
|
cursor: pointer;
|
||
|
position: relative;
|
||
|
z-index: 10;
|
||
|
display: none;
|
||
|
-webkit-transition: all .2s ease-in;
|
||
|
-moz-transition: all .2s ease-in;
|
||
|
-o-transition: all .2s ease-in;
|
||
|
transition: all .2s ease-in;
|
||
|
width: 25px;
|
||
|
height: 20px;
|
||
|
}
|
||
|
.menuico:before,
|
||
|
.menuico:after,.menuico span {
|
||
|
content: "";
|
||
|
position: absolute;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 3px;
|
||
|
background-color: #fff;
|
||
|
transition: all 0.3s ease-in-out;
|
||
|
}
|
||
|
|
||
|
.menuico:before {
|
||
|
top: 0;
|
||
|
}
|
||
|
.menuico span{
|
||
|
top: 8px;
|
||
|
}
|
||
|
.menuico:after {
|
||
|
top: 16px;
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
/*.menuico span {*/
|
||
|
/* position: absolute;*/
|
||
|
/* top: 50%;*/
|
||
|
/* left: 50%;*/
|
||
|
/* display: block;*/
|
||
|
/* width: 21px;*/
|
||
|
/* height: 2px;*/
|
||
|
/* background-color: #666;*/
|
||
|
/* transform: translateX(-50%) translateY(-50%);*/
|
||
|
/* transition: all .1s ease-in;*/
|
||
|
/*}*/
|
||
|
/*.menuico span:first-child {*/
|
||
|
/* margin-top: -6px;*/
|
||
|
/*}*/
|
||
|
/*.menuico span:last-child {*/
|
||
|
/* margin-top: 6px;*/
|
||
|
/*}*/
|
||
|
|
||
|
.menuico.collapsed:before {
|
||
|
top: 50%;
|
||
|
transform: rotate(45deg);
|
||
|
}
|
||
|
.menuico.collapsed:after {
|
||
|
top: 50%;
|
||
|
transform: rotate(-45deg);
|
||
|
}
|
||
|
.menuico.collapsed span {
|
||
|
display: none;
|
||
|
}
|
||
|
.v1Menu li.navLogin{
|
||
|
display: none;
|
||
|
}
|
||
|
.navLoginBtn{
|
||
|
display: inline-block;
|
||
|
padding: 6px 15px;
|
||
|
border:2px solid #fff;
|
||
|
border-radius: 10px;
|
||
|
color: #fff;
|
||
|
text-decoration: none;
|
||
|
margin: 10px 10px 0 0;
|
||
|
}
|
||
|
.navLoginBtn:hover{
|
||
|
color: #fff;
|
||
|
}
|
||
|
/*面包屑导航*/
|
||
|
.breadcrumb{
|
||
|
margin:20px 0px;
|
||
|
}
|
||
|
.breadcrumb > li {display: inline-block;}
|
||
|
.breadcrumb > li + li::before {content: "/\00a0";padding: 0 5px;color: #ccc;}
|
||
|
.breadcrumb li a {
|
||
|
font-size: 14px;
|
||
|
color: #333;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
/*首页banner*/
|
||
|
.vedioBanner{
|
||
|
height: 1000px;
|
||
|
overflow: hidden;
|
||
|
position: relative;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
.vedioBanner video{
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 50%;
|
||
|
z-index: 0;
|
||
|
width: 2400px;
|
||
|
margin-left: -1200px;
|
||
|
}
|
||
|
.videomask {
|
||
|
min-width: 100%;
|
||
|
min-height: 100%;
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
opacity: .5;
|
||
|
background: #000000;
|
||
|
z-index: 9;
|
||
|
}
|
||
|
.vedioBannerIntro {
|
||
|
width: 1000px;
|
||
|
margin-top: 30px;
|
||
|
font-size: 14px;
|
||
|
color: #fff;
|
||
|
text-align: center;
|
||
|
z-index: 99;
|
||
|
-webkit-animation: fadeInDown 0.5s ease-in;
|
||
|
-moz-animation: fadeInDown 0.5s ease-in;
|
||
|
-o-animation: fadeInDown 0.5s ease-in;
|
||
|
animation: fadeInDown 0.5s ease-in;
|
||
|
}
|
||
|
@keyframes fadeInDown {
|
||
|
0% {
|
||
|
opacity: 0
|
||
|
}
|
||
|
to {
|
||
|
opacity: 1
|
||
|
}
|
||
|
}
|
||
|
.vedioBannerIntro h2 {
|
||
|
margin-bottom: 20px;
|
||
|
padding: 0 20px;
|
||
|
font-weight: bold;
|
||
|
font-size: 60px;
|
||
|
color: #fff;
|
||
|
font-family: "microsoft yahei light",PingFangSC-Ultralight,sans-serif;
|
||
|
line-height: 1.5;
|
||
|
}
|
||
|
.vedioBannerIntro a{
|
||
|
text-decoration: none;
|
||
|
padding: 12px 20px;
|
||
|
margin: 5px 8px;
|
||
|
font-size: 16px;
|
||
|
}
|
||
|
.vedioBannerIntro h3 span {
|
||
|
margin: 0 3px;
|
||
|
font-family: "microsoft yahei";
|
||
|
-webkit-background-clip: text;
|
||
|
background-clip: text;
|
||
|
-webkit-text-fill-color: transparent;
|
||
|
background-image: -webkit-gradient(linear, left top, right top, from(#0d6efd), to(#2aeb91));
|
||
|
background-image: -webkit-linear-gradient(left, #0d6efd, #2aeb91);
|
||
|
background-image: -moz-linear-gradient(left, #0d6efd, #2aeb91);
|
||
|
background-image: linear-gradient(to right, #0d6efd, #2aeb91);
|
||
|
}
|
||
|
|
||
|
|
||
|
/*首页详情*/
|
||
|
.v1MainInfo {
|
||
|
background: #fff;
|
||
|
padding: 10px;
|
||
|
}
|
||
|
.hignRun{
|
||
|
padding: 20px;
|
||
|
}
|
||
|
.hignRun h3{
|
||
|
padding-bottom: 20px;
|
||
|
}
|
||
|
.hignRun p{
|
||
|
color: #999;
|
||
|
font-size: 14px;
|
||
|
line-height: 26px;
|
||
|
}
|
||
|
.feature-icon {
|
||
|
display: inline-flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
width: 50px;
|
||
|
height: 50px;
|
||
|
margin: 15px 0px;
|
||
|
font-size: 22px;
|
||
|
color: #fff;
|
||
|
border-radius: .75rem;
|
||
|
fill: currentColor;
|
||
|
}
|
||
|
.preview {
|
||
|
background: url(../images/pc.png) no-repeat top center;
|
||
|
height: 617px;
|
||
|
padding-top: 24px;
|
||
|
}
|
||
|
.jumbotron {
|
||
|
display: block;
|
||
|
width: 814px;
|
||
|
margin:0 auto;
|
||
|
}
|
||
|
.v1Masthead{
|
||
|
padding-top: 30px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
.v1Masthead h3{
|
||
|
font-size: 30px;
|
||
|
color: #333;
|
||
|
}
|
||
|
.v1Masthead p{
|
||
|
font-size: 14px;
|
||
|
color: #858585;
|
||
|
line-height: 30px;
|
||
|
padding: 20px 10px 20px 10px;
|
||
|
}
|
||
|
.imgTable .col{
|
||
|
margin:30px 0px;
|
||
|
display: flex;
|
||
|
}
|
||
|
.imgTablePic{
|
||
|
width: 82px;
|
||
|
height: 82px;
|
||
|
background: url(/static/images/cndnsCim-4.png) no-repeat 0 -246px;
|
||
|
float: left;
|
||
|
margin-right: 20px;
|
||
|
}
|
||
|
.imgTable .col:nth-child(2) .imgTablePic{
|
||
|
background-position: 0 -328px;
|
||
|
}
|
||
|
.imgTable .col:nth-child(3) .imgTablePic{
|
||
|
background-position: 0 -410px;
|
||
|
}
|
||
|
.imgTable2 .col:nth-child(1) .imgTablePic{
|
||
|
background-position: 0 0;
|
||
|
}
|
||
|
.imgTable2 .col:nth-child(2) .imgTablePic{
|
||
|
background-position: 0 -82px;
|
||
|
}
|
||
|
.imgTable2 .col:nth-child(3) .imgTablePic{
|
||
|
background-position: 0 -164px;
|
||
|
}
|
||
|
.imgTableTxt{
|
||
|
float: left;
|
||
|
width: 240px;
|
||
|
}
|
||
|
.imgTableTxt h3{
|
||
|
color: #333;
|
||
|
font-size: 18px;
|
||
|
line-height: 18px;
|
||
|
}
|
||
|
.imgTableTxt p{
|
||
|
color: #999;
|
||
|
line-height: 25px;
|
||
|
padding-top: 10px;
|
||
|
height: 90px;
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
.v1Feature{
|
||
|
padding-top: 20px;
|
||
|
font-size: 18px;
|
||
|
line-height: 28px;
|
||
|
}
|
||
|
.v2Feature{
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
}
|
||
|
.v2Feature .v2Row{
|
||
|
background: #fff;
|
||
|
border-radius: 8px;
|
||
|
-webkit-box-shadow: 0 2px 24px rgba(28,76,186,0.08);
|
||
|
box-shadow: 0 2px 24px rgba(28,76,186,0.08);
|
||
|
margin: 10px;
|
||
|
text-align: center;
|
||
|
width: 31%;
|
||
|
padding: 0 10px;
|
||
|
}
|
||
|
.v2Feature p{
|
||
|
color: #333;
|
||
|
font-size:14px;
|
||
|
margin: 10px 0px;
|
||
|
line-height: 22px;
|
||
|
}
|
||
|
.v2Feature h2{
|
||
|
font-size: 22px;
|
||
|
}
|
||
|
|
||
|
.indexTxtBanner{
|
||
|
background: #0a2942;
|
||
|
color: #fff;
|
||
|
}
|
||
|
.indexTxtBanner .container{
|
||
|
display: flex;
|
||
|
justify-content:space-between;
|
||
|
align-items: center;
|
||
|
flex-wrap: wrap;
|
||
|
}
|
||
|
.indexTxtBanner h2{
|
||
|
margin-top: 15px;
|
||
|
}
|
||
|
.indexTxtBanner p{
|
||
|
color: #fff;
|
||
|
font-size: 20px;
|
||
|
margin: 20px 0px;
|
||
|
}
|
||
|
/*关于页banner*/
|
||
|
.aboutBanner{
|
||
|
height: 550px;
|
||
|
background-color: #3369FF;
|
||
|
background-image: linear-gradient(to right, #0d6efd, #2aadeb);
|
||
|
display: flex;
|
||
|
color: #fff;
|
||
|
padding-top: 140px;
|
||
|
}
|
||
|
.aboutBanner .container{
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
.aboutBanner .imgDesc{
|
||
|
width: 500px;
|
||
|
}
|
||
|
.aboutBannerBox{
|
||
|
display: inline-block;
|
||
|
letter-spacing: 2px;
|
||
|
}
|
||
|
|
||
|
.aboutBannerBox h2{
|
||
|
font-size: 32px;
|
||
|
font-weight: 500;
|
||
|
margin: 30px 0px;
|
||
|
}
|
||
|
.aboutBannerBox h3{
|
||
|
font-size: 20px;
|
||
|
margin: 15px 0px;
|
||
|
}
|
||
|
.aboutBannerBox h4{
|
||
|
font-size: 16px;
|
||
|
margin: 15px 0px;
|
||
|
}
|
||
|
.aboutBannerBox a{
|
||
|
text-decoration: none;
|
||
|
margin: 30px 20px 0px 0px;
|
||
|
border-radius: 5px;
|
||
|
padding: 8px 30px 10px;
|
||
|
color: #ffffff;
|
||
|
font-size: 18px;
|
||
|
transition: background .15s linear,color .15s
|
||
|
}
|
||
|
|
||
|
/*内容详情*/
|
||
|
.reason{
|
||
|
padding-top: 20px;
|
||
|
}
|
||
|
.reason h2{
|
||
|
padding: 20px 0px;
|
||
|
font-size: 28px;
|
||
|
color: #040000;
|
||
|
}
|
||
|
.reason h3{
|
||
|
font-size: 26px;
|
||
|
padding: 20px 0px;
|
||
|
}
|
||
|
.reason h4{
|
||
|
padding-top: 20px;
|
||
|
padding-bottom: 30px;
|
||
|
font-size: 22px;
|
||
|
color: #524f4f;
|
||
|
}
|
||
|
.reason p{
|
||
|
line-height: 30px;
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
.reason ul{
|
||
|
text-align: left;
|
||
|
font-size: 14px;
|
||
|
line-height: 35px;
|
||
|
padding-left: 35px;
|
||
|
}
|
||
|
/*演示页banner*/
|
||
|
.showBanner{
|
||
|
background-color: #138b4f;
|
||
|
background-image: linear-gradient(120deg,#155799,#138b4f);
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
flex-direction: column;
|
||
|
color: #fff;
|
||
|
letter-spacing: 3px;
|
||
|
padding: 110px 10px 70px 10px;
|
||
|
}
|
||
|
.showBanner h1{
|
||
|
margin-top: 20px;
|
||
|
font-size: 30px;
|
||
|
}
|
||
|
.showBanner h2{
|
||
|
font-size: 20px;
|
||
|
margin-top: 26px;
|
||
|
font-weight: 400;
|
||
|
color: #f5f5f5;
|
||
|
}
|
||
|
.showMainHead{
|
||
|
margin: 20px 0px;
|
||
|
text-align: center;
|
||
|
color: rgba(0,0,0,.85);
|
||
|
font: 14px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;
|
||
|
}
|
||
|
.showMainHead h2{
|
||
|
font-size: 22px;
|
||
|
}
|
||
|
.showMainHead h3{
|
||
|
font-size: 16px;
|
||
|
margin-top: 30px;
|
||
|
}
|
||
|
.showMainItem{
|
||
|
max-width: 630px;
|
||
|
margin: 20px auto;
|
||
|
background: linear-gradient(90deg, #4E7DF7 0%, #86AAFF 100%);
|
||
|
border-radius: 10px;
|
||
|
color: #fff;
|
||
|
padding: 20px;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: space-between;
|
||
|
font-size: 14px;
|
||
|
min-height: 150px;
|
||
|
line-height: 26px;
|
||
|
}
|
||
|
.showMainItem a{
|
||
|
text-decoration: none;
|
||
|
color: #fff;
|
||
|
}
|
||
|
.showMainItem .left{
|
||
|
width: 60px;
|
||
|
}
|
||
|
.showMainItem .middle{
|
||
|
flex: 1;
|
||
|
}
|
||
|
.showMainItem .left i{
|
||
|
font-size: 38px;
|
||
|
}
|
||
|
.showMainItem h5{
|
||
|
font-size: 16px;
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
.showMainItem .right a{
|
||
|
background: #fff;
|
||
|
padding: 2px 10px;
|
||
|
color: #555;
|
||
|
border-radius: 13px;
|
||
|
font-size: 12px;
|
||
|
display: inline-block;
|
||
|
}
|
||
|
.shopBox{
|
||
|
display: flex;
|
||
|
max-width: 1300px;
|
||
|
width: 100%;
|
||
|
letter-spacing: normal;
|
||
|
}
|
||
|
.shopBox .productPic{
|
||
|
width: 550px;
|
||
|
margin: 50px 50px 0px 0px;
|
||
|
border-radius: 10px;
|
||
|
}
|
||
|
.shopBox .productName{
|
||
|
font-size: 35px;
|
||
|
}
|
||
|
.shopBox .productSubtitle{
|
||
|
opacity: .8;
|
||
|
margin: 20px 0;
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
.shopBox .productPrice{
|
||
|
font-size: 35px;
|
||
|
font-weight: 700;
|
||
|
}
|
||
|
.shopBox .productPrice span{
|
||
|
font-size: 28px;
|
||
|
}
|
||
|
.shopBox .productBtn{
|
||
|
background: #fd8b53;
|
||
|
border: 1px solid #fd8b53;
|
||
|
display: inline-block;
|
||
|
border-radius: 22px;
|
||
|
color: #fff;
|
||
|
text-decoration: none;
|
||
|
margin: 20px 0px;
|
||
|
font-size: 18px;
|
||
|
font-weight: 700;
|
||
|
padding: 12px 20px;
|
||
|
letter-spacing: 1px;
|
||
|
}
|
||
|
.shopBox .productTip{
|
||
|
background: rgba(0, 0, 0, 0.1);
|
||
|
opacity: .6;
|
||
|
max-width: 400px;
|
||
|
padding: 10px;
|
||
|
font-size: 13px;
|
||
|
line-height: 23px;
|
||
|
}
|
||
|
/*系列文章*/
|
||
|
.artcileBody{
|
||
|
background: #fff;
|
||
|
margin: 15px auto;
|
||
|
padding: 15px 30px;
|
||
|
}
|
||
|
.articleCate{
|
||
|
color: #333;
|
||
|
font-size: 16px;
|
||
|
margin: 10px 0px;
|
||
|
}
|
||
|
.articleItem{
|
||
|
display: block;
|
||
|
border: 1px solid #eee;
|
||
|
border-radius: 4px;
|
||
|
margin: 4px 0;
|
||
|
color: #3555cc;
|
||
|
padding: 5px 12px;
|
||
|
font-size: 13px;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
.articleItem:hover{
|
||
|
background: #eee;
|
||
|
}
|
||
|
.articleItem i{
|
||
|
font-size: 32px;
|
||
|
color: #a1a1a1;
|
||
|
}
|
||
|
|
||
|
.indexItem{
|
||
|
display: flex;
|
||
|
margin: 12px 0px;
|
||
|
}
|
||
|
.indexItem .date{
|
||
|
width: 50px;
|
||
|
height: 55px;
|
||
|
border: 1px solid #3555cc;
|
||
|
border-radius: 6px;
|
||
|
text-align: center;
|
||
|
margin-right: 10px;
|
||
|
line-height: 25px;
|
||
|
}
|
||
|
.indexItem .day{
|
||
|
color: #fff;
|
||
|
border-radius: 4px 4px 0px 0px;
|
||
|
background: #3555cc;
|
||
|
text-align: center;
|
||
|
font-size: 16px;
|
||
|
}
|
||
|
.indexItem .title{
|
||
|
flex: 1;
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
.indexItem .mouth{
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
.indexItem a{
|
||
|
color: #007bff;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
.indexItem p{
|
||
|
color: #c4cfdb;
|
||
|
}
|
||
|
|
||
|
.detailTitle{
|
||
|
text-align: center;
|
||
|
font-size: 30px;
|
||
|
margin: 30px 0px;
|
||
|
}
|
||
|
.detailContent{
|
||
|
line-height: 33px;
|
||
|
font-size: 16px;
|
||
|
}
|
||
|
.detailContent h2{
|
||
|
font-size: 22px;
|
||
|
margin: 25px 0px 15px 0px;
|
||
|
}
|
||
|
.detailContent h3{
|
||
|
font-size: 18px;
|
||
|
}
|
||
|
.detailContent ul{
|
||
|
margin: 10px 22px;
|
||
|
}
|
||
|
.detailContent pre{
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
.detailContent img{
|
||
|
max-width: 100%;
|
||
|
}
|
||
|
.detailContent .cnblogs_code{
|
||
|
line-height: 23px;
|
||
|
background-color: #f5f5f5;
|
||
|
font-family: Courier New !important;
|
||
|
font-size: 12px !important;
|
||
|
border: 1px solid #ccc;
|
||
|
padding: 5px;
|
||
|
overflow: auto;
|
||
|
margin: 5px 0;
|
||
|
color: #000;
|
||
|
}
|
||
|
.detailContent p{
|
||
|
margin: 10px 0px;
|
||
|
}
|
||
|
.detailContent a{
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
.tongji{
|
||
|
display: flex;
|
||
|
}
|
||
|
.tongji .tongjiItem{
|
||
|
background: #fff;
|
||
|
margin: 10px;
|
||
|
border-radius: 5px;
|
||
|
width: 100%;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
padding:40px 0px;
|
||
|
}
|
||
|
.tongji .tongjiName{
|
||
|
margin: 20px 0px 0px 0px;
|
||
|
color: #52627B;
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
.tongji .tongjiLogo{
|
||
|
width: 50px;
|
||
|
height: 50px;
|
||
|
}
|
||
|
.tongji .tongjiQrcode{
|
||
|
width: 140px;
|
||
|
height: 140px;
|
||
|
}
|
||
|
.tongji .tongjiLink{
|
||
|
background: #2d8cf0;
|
||
|
padding: 7px 20px;
|
||
|
display: flex;
|
||
|
color: #fff;
|
||
|
text-decoration: none;
|
||
|
align-items: center;
|
||
|
font-size: 12px;
|
||
|
border-radius: 5px;
|
||
|
margin-top: 20px;
|
||
|
|
||
|
}
|
||
|
.tongji .tongjiLink img{
|
||
|
width: 20px;
|
||
|
margin-right: 10px;
|
||
|
}
|
||
|
.tongji p{
|
||
|
font-size: 12px;
|
||
|
color: #878787;
|
||
|
margin-top: 10px;
|
||
|
}
|
||
|
.shouquan{
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
margin-bottom: 30px;
|
||
|
}
|
||
|
.shouquanItem{
|
||
|
flex: 1;
|
||
|
display: flex;
|
||
|
background: #fff;
|
||
|
border-radius: 10px;
|
||
|
padding: 20px;
|
||
|
margin: 10px;
|
||
|
}
|
||
|
.shouquanItem img{
|
||
|
width: 100px;
|
||
|
height: 100px;
|
||
|
margin: 10px 35px;
|
||
|
object-fit: contain;
|
||
|
}
|
||
|
.shouquanItem h2{
|
||
|
font-weight: 500;
|
||
|
font-size: 22px;
|
||
|
line-height: 30px;
|
||
|
color: #333333;
|
||
|
}
|
||
|
.shouquanItem p{
|
||
|
padding: 10px 10px 0px 0;
|
||
|
font-size: 14px;
|
||
|
line-height: 25px;
|
||
|
color: #666666;
|
||
|
}
|
||
|
.shouquanItem a{
|
||
|
font-size: 14px;
|
||
|
line-height: 20px;
|
||
|
color: #2A7EFB;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
/*底部*/
|
||
|
footer.footer {
|
||
|
width: 100%;
|
||
|
color: #aaa;
|
||
|
background: #1f2730;
|
||
|
text-align: left;
|
||
|
font-size: 12px;
|
||
|
}
|
||
|
footer.footer ul {
|
||
|
margin:10px 0px;
|
||
|
list-style: none;
|
||
|
}
|
||
|
footer.footer ul li{
|
||
|
list-style: none;
|
||
|
}
|
||
|
footer.footer ul li.f-tit {
|
||
|
margin-bottom: 10px;
|
||
|
font-size: 14px;
|
||
|
color: #fff;
|
||
|
}
|
||
|
footer.footer a {
|
||
|
color: #aaa;
|
||
|
text-decoration: none;
|
||
|
|
||
|
}
|
||
|
footer.footer .address {
|
||
|
line-height: 21px;
|
||
|
text-align: center;
|
||
|
background: #161e26;
|
||
|
margin: 0;
|
||
|
padding: 10px;
|
||
|
}
|
||
|
|
||
|
|
||
|
.gradient-btn {
|
||
|
user-select: none;
|
||
|
-moz-user-select: none;
|
||
|
background-image:linear-gradient(89.78deg, #C8BDFF -31.69%, #BAA6FF -22.78%, #6721FF 27.93%, #00CBFF 99.79%);
|
||
|
border: medium none;
|
||
|
border-radius: 30px;
|
||
|
color: #fff;
|
||
|
cursor: pointer;
|
||
|
display: inline-block;
|
||
|
font-size: 14px;
|
||
|
font-weight: 600;
|
||
|
letter-spacing: 0.05em;
|
||
|
line-height: 1;
|
||
|
margin-bottom: 0;
|
||
|
padding: 19px 30px;
|
||
|
text-align: center;
|
||
|
text-transform: uppercase;
|
||
|
touch-action: manipulation;
|
||
|
transition: all 0.3s ease 0s;
|
||
|
vertical-align: middle;
|
||
|
white-space: nowrap;
|
||
|
position: relative;
|
||
|
z-index: 1;
|
||
|
}
|
||
|
|
||
|
/*动画效果*/
|
||
|
@keyframes down {
|
||
|
0% {
|
||
|
-webkit-transform: translateY(-20px);
|
||
|
transform: translateY(-20px);
|
||
|
opacity: 0
|
||
|
}
|
||
|
|
||
|
to {
|
||
|
-webkit-transform: translateY(0px);
|
||
|
transform: translateY(0px);
|
||
|
opacity: 1
|
||
|
}
|
||
|
}
|
||
|
/*响应式*/
|
||
|
@media screen and (max-width: 1000px){
|
||
|
.v1Header,.v1Logo,.v1Logo a{
|
||
|
|
||
|
}
|
||
|
.v1Logo{
|
||
|
font-size: 26px;
|
||
|
color: #0188fb;
|
||
|
}
|
||
|
.v1Logo i,.v1Logo span{
|
||
|
display: none;
|
||
|
}
|
||
|
.v1Wrap{
|
||
|
width: 100%;
|
||
|
min-width: 100%;
|
||
|
}
|
||
|
.menuico {
|
||
|
display: block;
|
||
|
}
|
||
|
.v1Menu {
|
||
|
width: 100%;
|
||
|
top: 68px;
|
||
|
margin: 0;
|
||
|
display: none;
|
||
|
background: #fff;
|
||
|
animation: down 0.5s ease-in-out both;
|
||
|
height: 100vh;
|
||
|
position: fixed;
|
||
|
}
|
||
|
.v1Menu .nav-item{
|
||
|
width: 100%;
|
||
|
padding: 0;
|
||
|
color: #ddd;
|
||
|
line-height: 40px;
|
||
|
border-bottom: 2px solid #d7d7d7;
|
||
|
}
|
||
|
.v1Menu .nav-item.on{
|
||
|
border-bottom: 2px solid #3369FF;
|
||
|
}
|
||
|
.v1Menu .nav-item:hover{
|
||
|
border-bottom:2px solid #3369FF;
|
||
|
}
|
||
|
.v1Menu .nav-item a {
|
||
|
padding: 0 18px;
|
||
|
font-size: 16px;
|
||
|
color: #666;
|
||
|
border: 0;
|
||
|
display: block;
|
||
|
}
|
||
|
.v1Menu li.navLogin{
|
||
|
display: block;
|
||
|
}
|
||
|
.navLoginBtn{
|
||
|
color: #0d6efd;
|
||
|
border: 2px solid #0d6efd;
|
||
|
}
|
||
|
.v1VedioBanner video {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
.v1BannerIntro h2 {
|
||
|
margin-top: 20px;
|
||
|
font-size: 30px;
|
||
|
line-height: 36px;
|
||
|
}
|
||
|
.v1BannerIntro h2 span{
|
||
|
background-color: #2aeb91;
|
||
|
color: #2aeb91;
|
||
|
}
|
||
|
.vedioBannerIntro p{
|
||
|
font-size: 18px;
|
||
|
}
|
||
|
.aboutBannerBox h1{
|
||
|
font-size: 38px;
|
||
|
}
|
||
|
.aboutBannerBox h2{
|
||
|
font-size: 28px;
|
||
|
}
|
||
|
.aboutBanner .imgDesc{
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
|
||
|
.vedioBanner{
|
||
|
height: 400px;
|
||
|
}
|
||
|
.vedioBanner video {
|
||
|
display: none;
|
||
|
}
|
||
|
.videomask{
|
||
|
opacity: 1;
|
||
|
background: #0a2942;
|
||
|
}
|
||
|
.vedioBannerIntro{
|
||
|
width: 90%;
|
||
|
}
|
||
|
.vedioBannerIntro h2 {
|
||
|
font-size: 30px;
|
||
|
margin-top: 60px;
|
||
|
}
|
||
|
.vedioBannerIntro h2 span{
|
||
|
background-color: #2aeb91;
|
||
|
color: #2aeb91;
|
||
|
}
|
||
|
.preview{
|
||
|
display: none;
|
||
|
}
|
||
|
.v1Feature .gifIntro{
|
||
|
display: none;
|
||
|
}
|
||
|
.artcileBody .col-4,.artcileBody .col-6,.hignRun .col{
|
||
|
width: 100%;
|
||
|
flex: auto;
|
||
|
}
|
||
|
.v2Feature .v2Row{
|
||
|
width: 100%;
|
||
|
}
|
||
|
.tongji{
|
||
|
display: block;
|
||
|
}
|
||
|
.tongji .tongjiItem{
|
||
|
margin: 10px 0px;
|
||
|
}
|
||
|
.shouquan,.shouquanItem{
|
||
|
display: block;
|
||
|
}
|
||
|
.shouquan .shouquanLogo,.shouquanItem h2{
|
||
|
text-align: center;
|
||
|
}
|
||
|
.shopBox .productPic{
|
||
|
display: none;
|
||
|
}
|
||
|
}
|