pzct/public/static/web/css/style.scss

2418 lines
45 KiB
SCSS
Raw Normal View History

2023-07-25 09:22:32 +00:00
body {
width: 100%;
overflow-x: hidden;
}
img{
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
-ms-interpolation-mode:nearest-neighbor;
}
@mixin all($num:0.5s) {
transition: all $num ease;
-moz-transition: all $num ease;
-webkit-transition: all $num ease;
-o-transition: all $num ease;
}
@mixin bezier($num:0.5s) {
transition: all $num cubic-bezier(.23,1.7,.79,.9) .4s;
-moz-transition: all $num cubic-bezier(.23,1.7,.79,.9) .4s;
-webkit-transition: all $num cubic-bezier(.23,1.7,.79,.9) .4s;
-o-transition: all $num cubic-bezier(.23,1.7,.79,.9) .4s;
}
@mixin grid($fr:1fr) {
display: -ms-grid;
display: grid;
-ms-grid-columns: repeat($fr, 1fr);
grid-template-columns: repeat($fr, 1fr);
}
@mixin flex($route:center,$justify:left){
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
/* 09版 */
-webkit-box-align: $route;
/* 12版 */
-webkit-align-items: $route;
-moz-align-items: $route;
-ms-align-items: $route;
-o-align-items: $route;
align-items: $route;
-webkit-box-pack: $justify;
/* 12版 */
-webkit-justify-content: $justify;
-moz-justify-content: $justify;
-ms-justify-content: $justify;
-o-justify-content: $justify;
justify-content: $justify;
}
@mixin imgs {
width: 100%;
display: block;
}
@mixin clear {
content: '';
display: block;
clear: both;
}
@mixin ellipsis($clamp:1) {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: $clamp;
-webkit-box-orient: vertical;
}
// 变量
$color:#bb0712;
$white:#fff;
$mobile-width:1200px;
$pc-width:1220px;
.swiper-container {
width: 100%;
height: 100%;
}
.swiper-slide {
/* Center slide text vertically */
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
overflow: hidden;
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
#demo {
display: none;
position: fixed;
width: 100%;
height: 100%;
background: $white;
text-align: center;
padding-top: 20%;
z-index: 9999999999;
top: 0;
left: 0;
}
#demo h3 {
font-size: 24px;
}
#demo span {
display: block;
font-size: 16px;
margin-top: 20px;
line-height: 25px;
}
#demo span a {
color: #c1191f;
}
.header {
position: relative;
left: 0;
top: 0;
width: 100%;
height: auto;
2023-08-01 06:20:42 +00:00
padding: 0px 3.90625%;
2023-07-25 09:22:32 +00:00
box-sizing: border-box;
@include flex(center,flex-end);
@include all(0.4s);
z-index: 99999;
.logo {
height: 62px;
position: absolute;
left: 0;
top: 0;
background-color: #cd1e19;
@include flex(center,center);
padding: 40px 3.90625%;
img {
height: 100%;
display: block;
}
}
.right-boxs {
@include flex();
2023-08-01 06:20:42 +00:00
height:103px;
2023-07-25 09:22:32 +00:00
.nav {
@include flex();
height: 100%;
font-family: 'syr';
li {
margin: 0 30px;
height: 100%;
position: relative;
2023-08-01 06:20:42 +00:00
&:hover {
h3 {
a {
color: $color;
}
}
}
2023-07-25 09:22:32 +00:00
h3 {
height: 100%;
font-weight: normal;
a {
@include flex();
color: #333;
height: 100%;
position: relative;
font-size: 18px;
&::before {
content: '';
width:100%;
height: 0px;
background-color: $color;
position: absolute;
left: 50%;
margin-left: -50%;
2023-08-01 06:20:42 +00:00
bottom: 35px;
2023-07-25 09:22:32 +00:00
}
&::after {
content: '';
width: 0;
height: 0;
border-top: 7px solid $color;
border-left: 7px solid transparent;
border-right: 7px solid transparent;
position: absolute;
left: 50%;
margin-left: -7px;
2023-08-01 06:20:42 +00:00
bottom:22px;
2023-07-25 09:22:32 +00:00
opacity: 0;
}
}
}
.listcur {
position: absolute;
2023-08-01 06:20:42 +00:00
top: 103px;
2023-07-25 09:22:32 +00:00
left: 50%;
display: none;
z-index: 100;
transition: all 0.3s;
background: #fff;
2023-08-01 06:20:42 +00:00
width: 180px;
margin-left: -90px;
2023-07-25 09:22:32 +00:00
padding: 3px 0 0 0;
2023-08-01 06:20:42 +00:00
border-radius: 8px;
2023-07-25 09:22:32 +00:00
border:1px solid #ececec;
text-align: center;
a {
display: block;
2023-08-01 06:20:42 +00:00
font-size: 16px;
2023-07-25 09:22:32 +00:00
color: #333333;
padding:0 10px;
box-sizing: border-box;
width: 100%;
z-index: 90;
height: auto;
line-height: 40px;
position: relative;
}
i {
position: absolute;
left: 50%;
margin-left: -10px;
top: -14px;
font-size: 14px;
color: #fff;
height: 20px;
line-height: 20px;
}
&:hover {
a:hover {
background: $color;
color: #fff;
}
}
}
&.curr {
a {
color: $color;
&::before {
height: 1px;
}
&::after {
opacity: 1;
}
}
}
}
}
.form {
@include flex(center,space-between);
margin-left: 15px;
border: 1px solid #c9c9c9;
height: 40px;
border-radius: 40px;
padding: 0 20px;
.input {
width: 70%;
border: none;
font-size: 14px;
height: 100%;
}
.btns {
width: 21px;
height: 21px;
border:none;
background: url("../img/search.png") no-repeat;
cursor: pointer;
}
}
}
}
.fixed-header {
position: fixed;
left:0;
width: 100%;
background-color: #fff;
box-shadow: 0 0 20px rgba(0,0,0,0.1);
.logo {
padding-top:21px;
padding-bottom: 20px;
}
}
.inner-header {
position: fixed;
left:0;
width: 100%;
background-color: #fff;
box-shadow: 0 0 20px rgba(0,0,0,0.1);
.logo {
padding-top:21px;
padding-bottom: 20px;
}
}
.fixed-height {
height: 103px;
}
.banner {
width: 100%;
max-height:740px;
min-height: 500px;
height: 38.54vw;
overflow: hidden;
position: relative;
.swiper-pagination {
bottom: 45px;
}
.swiper-pagination-bullet {
width: 66px;
height:2px;
background-color: #fff;
border-radius: 0;
opacity: 1;
transition: .7s width;
margin: 0 7px;
}
.swiper-pagination-bullet-active {
background:$color;
}
}
.mt80 {
margin-top: 80px;
}
.title {
font-size: 38px;
color: #4d4d4d;
margin-top: 30px;
font-weight: bold;
}
.index-about {
.wrap {
@include flex(flex-start,space-between);
position: relative;
.left {
height: 100%;
@include flex(flex-start,space-between);
flex-direction: column;
.line {
width: 44px;
height: 4px;
background-color: $color;
}
}
.icon {
width: 137px;
position: absolute;
left: 0;
bottom: 0;
}
.right {
width: 70.875%;
.text {
font-size: 16px;
color: #4d4d4d;
line-height: 2;
@include ellipsis(8);
}
.img {
width: 100%;
display: block;
margin-top: 30px;
img {
width: 100%;
display: block;
}
}
}
}
.num-list {
@include flex(center,space-between);
width: 100%;
li {
width: 260px;
padding: 30px 0 26px 0;
text-align: center;
background-color: #f6f5f6;
border-radius:50px 0 0 0;
.num {
text-align: center;
span {
display: inline-block;
position: relative;
font-size: 68px;
color: $color;
font-weight: bold;
font-family: "Arial";
line-height: 1;
i {
font-style: normal;
position: absolute;
font-weight: normal;
right: -28px;
top: -8px;
display: block;
font-size: 40px;
line-height: 1;
}
}
}
.st {
font-size: 18px;
color: #4d4d4d;
}
}
}
}
.link-href {
position: relative;
@include all();
display: block;
width: 100%;
height: 100%;
.v-img {
padding-top:63.043%;
border-radius: inherit;
background-color: var(--graph_bg_regular);
cursor: pointer;
display: block;
position: relative;
}
.v-img-cover {
width: 100%;
@include flex(center,center);
position: absolute;
left: 0;
top: 0;
height: 100%;
overflow: hidden;
}
img {
display: block;
height: 100%;
object-fit: inherit;
@include all();
}
}
.index-business {
.list {
@include flex();
.link-href {
.v-img {
padding-top:67.254%;
}
}
.text {
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
@include flex(center,center);
flex-direction: column;
@include all();
.icon {
max-width: 89px;
margin: 0 auto;
img {
max-width: 100%;
}
}
.st {
font-size: 24px;
color: #fff;
margin-top: 10px;
letter-spacing: 2px;
}
}
.hot {
width: 120px;
height: 65px;
background-color: $color;
@include flex(center,center);
font-size:24px;
text-align: center;
position: absolute;
left: 0;
top:0;
color: #fff;
font-weight: bold;
border-radius: 0 30px 0 0;
}
.left {
width: calc(50% - 6px);
}
.right {
margin-top: -6px;
width: calc(50% - 6px);
&:after {
@include clear();
}
.boxs {
width: calc(50% - 6px);
margin-left: 6px;
margin-top: 6px;
float: left;
}
}
a {
display: block;
position: relative;
&:hover {
.link-href {
img {
-webkit-transform: scale(1.05);
-moz-transform: scale(1.05);
-ms-transform: scale(1.05);
-o-transform: scale(1.05);
transform: scale(1.05);
}
}
.text {
transform: translateY(-10px);
}
}
}
}
}
.index-grow {
.img {
img {
width: 100%;
display: block;
}
}
}
.index-mission {
.list {
@include flex(center,space-between);
.left {
width: 60.625%;
.link-href {
.v-img {
padding-top:59.793%;
}
}
}
.right {
width: 36.875%;
li {
background-color: #f6f5f6;
padding: 20px;
margin-top:10px;
position: relative;
&:before {
content: "";
width:0%;
height: 100%;
right: 0;
top: 0;
background-color: $color;
z-index: 9;
position: absolute;
@include all();
}
a {
width: 100%;
height: 100%;
z-index: 99;
display: block;
position: relative;
}
.img {
width: 170px;
.link-href {
.v-img {
padding-top:49.111%;
}
img {
height: auto;
width: 100%;
}
}
}
.text {
position: absolute;
left: 190px;
right: 0px;
top: 0px;
bottom: 0;
@include flex(flex-start,center);
flex-direction: column;
color: #4d4d4d;
@include all();
h3 {
font-size: 24px;
font-weight: normal;
@include ellipsis(1);
}
.st {
font-size: 16px;
margin-top: 8px;
@include ellipsis(1);
}
}
&:hover {
.text {
color: #fff;
}
&:before {
width: 128.1%;
}
}
}
}
}
}
.index-locate {
.list {
.bd {
.boxs {
display: none;
a {
width: 100%;
display: block;
height: 100%;
overflow: hidden;
.link-href {
.v-img {
padding-top: 36.375%;
}
img {
height: auto;
width: 100%;
}
}
}
}
}
.hd {
ul {
background-color: #f6f5f6;
@include flex();
li {
flex: 1;
height: 68px;
@include flex(center,center);
font-size: 20px;
color: #4d4d4d;
&.on {
background-color: $color;
color: #fff;
}
}
}
}
}
}
.index-news {
.list {
li {
padding: 40px 0;
height: 100%;
border-bottom: 1px solid #eaeaea;
@include flex(center,space-between);
a {
display: block;
width: 100%;
height: 100%;
}
.text {
width: calc(100% - 570px);
color: #4d4d4d;
height: 100%;
.time {
font-size: 15px;
}
h3 {
font-size: 22px;
margin: 15px 0 15px 0;
@include ellipsis(1);
font-weight: normal;
&:hover {
a {
color: $color;
}
}
}
.st {
font-size: 15px;
line-height: 2;
@include ellipsis(3);
}
.links {
color: $color;
font-size: 14px;
margin-top: 35px;
display: inline-block;
&:hover {
color: #f00;
}
}
}
.img {
width: 500px;
overflow: hidden;
.link-href {
.v-img {
padding-top: 52%;
}
}
&:hover {
.link-href {
img {
-webkit-transform: scale(1.05);
-moz-transform: scale(1.05);
-ms-transform: scale(1.05);
-o-transform: scale(1.05);
transform: scale(1.05);
}
}
}
}
&:last-child {
border:none;
}
}
}
}
.footer {
background-color: #cd1e19;
.wrap {
@include flex(center,space-between);
padding: 45px 0;
.left {
width: 35.75%;
.logo {
display: block;
img {
height: 68px;
}
}
.email {
@include flex();
margin-top:28px;
li {
background-color:#fff;
padding: 20px 28px 20px 15px;
margin-right: 16px;
@include flex(center,cneter);
.text {
margin-left: 14px;
color: #4d4d4d;
h3 {
font-size: 15px;
}
.st {
font-size: 14px;
margin-top: 4px;
}
}
}
}
.tit {
font-size: 15px;
color: #fff;
padding-top: 15px;
p {
margin-top: 10px;
}
}
}
.right {
@include flex(flex-start,space-between);
width: 58.25%;
position: relative;
height: 100%;
.list {
display: block;
text-align: center;
a {
font-size: 14px;
color: rgba(255,255,255,0.7);
display: block;
margin-top: 12px;
&:hover {
color: #fff;
}
}
h3 {
padding-bottom: 10px;
a {
font-size: 16px;
color: #fff;
margin-top: 0;
}
}
}
}
}
.footer-bottom {
padding: 10px 0;
background: #a70000;
a {
text-align: center;
display: block;
font-size: 14px;
color: rgba(255,255,255,0.5);
}
}
}
.back {
display: none;
width: 65px;
height: 65px;
position: fixed;
right: 45px;
bottom: 42%;
z-index: 9999;
cursor: pointer;
img {
width: 100%;
display: block;
}
}
.inner-nav {
height: 40px;
padding: 11px 0;
box-shadow: 0 0 10px rgba(0,0,0,0.15);
.wrap {
@include flex(center,space-between);
height: 100%;
.left {
@include flex();
color: #898989;
img {
margin-right: 8px;
}
a {
color: #898989;
margin-right: 5px;
}
span {
color: $color;
margin-left: 5px;
}
}
.form {
@include flex(center,space-between);
height: 40px;
border-radius: 40px;
padding: 0 20px;
width: 260px;
.input {
width: 100%;
border: none;
font-size: 14px;
}
.btns {
width: 21px;
height: 21px;
border:none;
background: url("../img/search.png") no-repeat;
cursor: pointer;
}
}
}
}
.inner-nav2 {
.wrap {
@include flex();
a {
height: 42px;
line-height: 42px;
padding: 0 30px;
background-color: #ebebeb;
color: #4d4d4d;
font-size: 16px;
margin-right: 5px;
&.curr {
color: $color;
}
&:hover {
color: #fff;
background-color: $color;
}
}
}
}
.inner-banenr {
width: 100%;
display: block;
img {
width: 100%;
display: block;
}
}
.title2 {
font-size: 38px;
color: $color;
text-align: center;
font-weight: bold;
span {
padding-bottom: 10px;
display: inline-block;
border-bottom: 2px solid #d3d3d3;
}
}
.party-list {
ul {
margin-top: 30px;
li {
padding: 40px 0;
border-bottom: 1px solid #eaeaea;
a {
@include flex(flex-start);
width: 100%;
height:100%;
position: relative;
}
.img {
width: 355px;
overflow: hidden;
.link-href {
.v-img {
padding-top: 52.394%;
}
}
}
.text {
padding: 0 18% 0 33px;
h3 {
font-size: 22px;
color: #4d4d4d;
margin-top: 20px;
@include all();
@include ellipsis(1);
}
.link {
display: inline-block;
margin-top: 60px;
height: 36px;
line-height: 36px;
padding: 0 20px;
font-size: 14px;
color: #fff;
background-color: $color;
border:1px solid $color;
@include all(0.3s);
}
}
.time {
position: absolute;
right: 15px;
bottom: 40px;
@include flex();
font-size: 15px;
color: #4d4d4d;
img {
margin-right: 8px;
}
}
&:hover {
.img {
img {
-webkit-transform: scale(1.05);
-moz-transform: scale(1.05);
-ms-transform: scale(1.05);
-o-transform: scale(1.05);
transform: scale(1.05);
}
}
.text {
h3 {
color: $color;
}
.link {
background-color: #cd1e19;
}
}
}
}
}
.list-show {
padding:60px 0 180px 0;
text-align: center;
span {
font-size: 22px;
color: #4d4d4d;
font-weight: bold;
margin: 0 25px;
}
}
}
.pageing {
display:flex;
justify-content:center;
margin-top:60px;
}
.pageing a {
2023-07-26 08:43:01 +00:00
width:auto;
2023-07-25 09:22:32 +00:00
height:40px;
2023-07-26 08:43:01 +00:00
padding: 0 15px;
2023-07-25 09:22:32 +00:00
border:1px solid transparent;
border-radius:0px;
text-align:center;
line-height:40px;
font-size:15px;
color:#707479;
margin:0 7px;
transition:all 0.5s;
2023-07-26 08:43:01 +00:00
display: inline-block;
2023-07-25 09:22:32 +00:00
background-color: #ebebeb;
}
.pageing a.cur {
background:$color;
color:#fff;
border-color:$color;
}
.pageing a:hover {
background:$color;
color:#fff;
border-color:$color;
}
2023-07-26 08:43:01 +00:00
.pageing .layui-laypage span {
margin: 0;
font-size: 15px;
height: 40px;
line-height: 40px;
background: #ebebeb;
}
.layui-laypage .layui-laypage-curr .layui-laypage-em {
background-color: $color;
}
2023-07-25 09:22:32 +00:00
.about-list {
#maps {
height: 34.375vw;
width: 100%;
margin-top: 40px;
}
.list {
margin-top: 60px;
text-align: center;
color: #4d4d4d;
h3 {
font-size: 30px;
font-weight: bold;
}
.st {
margin-top: 15px;
}
.int {
margin-top: 35px;
font-size: 18px;
line-height: 2;
}
}
}
.news-list {
margin-left: -3%;
padding-top: 10px;
&:after {
@include clear();
}
.boxs {
width: 30.3%;
margin-left: 3%;
float: left;
margin-top: 40px;
@include all();
position: relative;
&:before {
content: "";
width: 100%;
height: 100%;
background-color: #ececec;
position: absolute;
left: 0;
top: 0;
z-index: 2;
}
a {
display: block;
}
.img {
width: 100%;
position: relative;
z-index: 9;
@include all();
.link-href {
.v-img {
padding-top: 52.4%;
}
}
}
.text {
background-color: #f6f6f6;
padding: 25px 25px 35px 25px;
color: #4d4d4d;
position: relative;
z-index: 9;
@include all();
h3 {
font-size: 22px;
@include ellipsis(1);
font-weight: normal;
@include all();
}
.st {
font-size: 15px;
line-height: 28px;
height: 84px;
@include ellipsis(3);
margin: 15px 0 35px 0;
}
.tit {
font-size: 14px;
@include flex(center,space-between);
.links {
color: $color;
}
}
}
&:hover {
.img {
transform: translate(8px,-8px);
}
.text {
transform: translate(8px,-8px);
h3 {
a {
color: $color;
}
}
}
}
}
}
.news-show {
.cons {
margin-top: 50px;
max-width: 100%;
overflow: hidden;
font-size: 18px;
line-height: 2;
color: #4d4d4d;
img {
max-width: 100%;
}
}
}
.zgsdt {
.boxs {
.text {
h3 {
a {
color: $color;
}
}
.st {
@include ellipsis(4);
height: 112px;
}
}
}
}
.talent-list {
.boxs {
padding: 42px 0;
border-bottom: 1px solid #ececec;
.talent-top {
cursor: pointer;
position: relative;
.tit {
font-size: 22px;
color: #4d4d4d;
line-height: 2;
}
.text {
margin-top: 20px;
@include flex(center,space-between);
.link {
display: inline-block;
height: 36px;
line-height: 36px;
padding: 0 20px;
font-size: 14px;
color: #fff;
background-color: #bb0712;
border: 1px solid #bb0712;
}
.time {
@include flex();
span {
margin-left: 30px;
font-size: 14px;
color: #4d4d4d;
@include flex();
img {
margin-right: 8px;
}
}
}
}
.int {
position: absolute;
right: 0;
top: 2px;
font-size: 20px;
line-height: 2;
color: #0083fe;
}
&:hover {
.tit {
color: $color;
}
}
}
.talent-bottom {
background-color: #fbfbfb;
padding: 60px 40px;
word-break: break-all;
color: #4d4d4d;
line-height: 2.1;
font-size: 16px;
margin-top: 20px;
display: none;
.tit {
font-size: 26px;
text-align: center;
font-weight: bold;
line-height: 1.6;
}
}
}
}
.platform-banner {
margin-top: 35px;
position: relative;
.img {
width: 100%;
overflow: hidden;
img {
width: 100%;
display: block;
}
}
.text {
position: absolute;
z-index: 1;
@include flex(center, center);
width: 100%;
height: 100%;
font-size: 42px;
left: 0;
top: 0;
color: $color;
}
.us {
position: absolute;
left:0;
width: 100%;
bottom: 0;
@include flex(center,center);
z-index: 9;
a {
font-size: 18px;
color: #fff;
background-color: $color;
height: 36px;
width: 120px;
@include flex(center,center);
margin: 0 2px;
cursor: pointer;
}
}
}
.download {
@include flex(center,space-around);
.boxs {
a {
display: block;
width: 100%;
}
width: 264px;
.img {
width: 100%;
img {
width: 100%;
display: block;
}
}
.text {
width: 100%;
background-color: #f6f6f6;
height: 60px;
@include flex(center,center);
font-size: 18px;
@include all();
}
&:hover {
.text {
background-color: $color;
color: #fff;
}
}
}
}
.zc-text {
@include flex(center,center);
font-size: 18px;
color: #4d4d4d;
span {
padding: 0 40px;
}
}
.zjct-content {
.top-list {
@include flex();
position: relative;
z-index: 9;
&::after {
@include clear();
}
.left {
font-size: 16px;
color: #4d4d4d;
line-height: 2.4;
padding-right: 7%;
float: left;
}
.right {
max-width: 44%;
position: relative;
.img {
overflow: hidden;
}
&:before {
content: "";
width: 85px;
position: absolute;
right: -85px;
top: 50px;
background-color:$color;
height: 135px;
}
&:after {
content: "";
width: 54px;
position: absolute;
left: -54px;
top: 120px;
background-color:#f4f4f4;
height: 130px;
}
}
}
&:after {
content: "";
display: block;
width: 8.333%;
background-color:#f4f4f4;
height: 130px;
position: absolute;
right: 0;
top: 120px;
z-index: 1;
}
.bottom-list {
padding-top: 25px;
.boxs {
margin-top: 20px;
background-color: #f4f4f4;
padding: 25px;
color: #4d4d4d;
font-size: 15px;
h3 {
margin-bottom: 8px;
}
.st {
line-height: 2;
}
}
}
}
.leader-content {
.list {
position: relative;
.swiper-button-prev {
background:url("../img/arrow.png") no-repeat;
background-size: 100%;
left:-60px;
&:after {
display: none;
}
}
.swiper-button-next {
background:url("../img/arrow.png") no-repeat;
background-size: 100%;
right:-60px;
transform: rotate(-180deg);
-ms-transform: rotate(-180deg); /* IE 9 */
-webkit-transform: rotate(-180deg); /* Safari and Chrome */
&:after {
display: none;
}
}
.swiper-slide {
display: block;
.img {
position: relative;
width: 100%;
height: 100%;
.link-href {
.v-img {
padding-top: 129.61%;
}
}
}
.text {
text-align: center;
margin-top: 20px;
font-size: 18px;
color: #4d4d4d;
}
&:hover {
.img {
.link-href {
img {
-webkit-transform: scale(1.05);
-moz-transform: scale(1.05);
-ms-transform: scale(1.05);
-o-transform: scale(1.05);
transform: scale(1.05);
}
}
}
.text {
color: $color;
}
}
}
}
}
.grow-content {
.list {
img {
width: 100%;
display: block;
}
}
}
.honor-content {
.list {
margin-left: -3.3%;
&::after {
@include clear();
}
.boxs {
float: left;
width: 30%;
margin-left: 3.3%;
padding: 10px 15px;
margin-bottom: 30px;
@include flex(center,center);
flex-direction: column;
box-sizing: border-box;
@include all();
.img {
width: 100%;
.link-href {
.v-img {
padding-top: 54.91%;
}
}
}
.text {
font-size: 22px;
margin-top: 25px;
text-align: center;
}
&:hover {
transform: translate(0px,-8px);
.text {
color: $color;
}
}
}
}
}
.plan-content {
.list {
background-color: #f6f6f6;
padding: 60px 0 70px 0;
h3 {
margin: 0 auto;
text-align: center;
margin-bottom: 25px;
}
.img {
margin: 0 auto;
text-align: center;
}
img {
max-width: 100%;
}
}
}
.business-content {
.int {
color: #4d4d4d;
font-size: 16px;
line-height: 2;
}
.list {
margin-top: 35px;
.bd {
.boxs {
.img {
width: 100%;
height: 35.9375vw;
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
}
}
.hd {
ul {
position: absolute;
left: 0;
bottom: 70px;
@include flex(center,center);
z-index: 9;
width: 100%;
li {
margin: 0 15px;
width: 210px;
height: 96px;
background-color: #fff;
font-size: 20px;
color: #4d4d4d;
a {
@include flex(center,center);
width: 100%;
height: 100%;
}
&.on {
a {
background-color: $color;
color: #fff;
}
}
}
}
}
}
}
/* 移动端菜单 */
.hamburger {
background-color:none;
padding:0;
z-index: 9;
display: none;
margin-top:4px;
}
.hamburger-box {
width: 30px;
visibility: visible;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
background-color: #333;
height: 3px;
width: 28px;
}
.hamburger-inner:before {
width:28px;
right: 0;
}
.hamburger-inner:after {
width: 28px;
right: 0;
}
.hamburger:hover {
opacity: 1;
}
.hamburger:hover .hamburger-inner:before {
right: 0;
}
@media screen and (max-width:1600px) {
.wrap {
margin: 0 4%;
}
.mt80 {
margin-top: 60px;
}
.header {
2023-08-01 06:20:42 +00:00
padding: 0px 1.90625%;
2023-07-25 09:22:32 +00:00
.right-boxs {
.form {
display: none;
}
.nav {
li {
margin: 0 1.85vw;
}
}
}
}
.footer {
.wrap {
.right {
width: 50%;
}
}
}
}
// 移动端
@media screen and (max-width:$mobile-width) {
.hamburger {
display: block;
position: relative;
}
.hamburger {
display: block;
}
.wrap2 {
margin:0 2.5%;
}
.header {
padding: 0px 2.5%;
background-color: #fff;
justify-content: space-between;
position: fixed;
box-sizing: border-box;
.logo {
height: 45px;
padding: 5px;
position: relative;
left: -2.5%;
}
.right-boxs {
height: auto;
.form {
position: fixed;
bottom: 3%;
right: -10%;
z-index: -1;
opacity: 0;
display: block;
width: 80%;
box-sizing: border-box;
margin-left: 0;
background-color: #fff;
@include all(0.4s);
&::after {
@include clear();
}
.input {
float: left;
}
.btns {
float: right;
margin-top: 8px;
}
}
.form-show {
opacity: 1;
z-index: 9999;
right: 10%;
}
.nav {
position: fixed;
right: -100%;
top: 55px;
border-top: 1px solid #ececec;
width: 100%;
height: calc(100% - 52px);
padding: 1% 0 20% 0;
box-sizing: border-box;
background: #f9f9f9;
opacity: 0;
overflow-x: hidden;
transform: rotateX(30deg);
-webkit-transform: rotateX(30deg);
@include all();
li {
height: auto;
margin: 0;
h3 {
a {
line-height: 50px;
height: 50px;
border-bottom: 1px solid #ddd;
font-weight: bold;
color: #333;
font-size: 15px;
padding-left:15px;
text-align: left;
&:before {
display: none;
}
&:after {
display: none;
}
}
}
.listcur {
display: block !important;
opacity: 1 !important;
position: relative;
width: 100%;
top: 0;
left: 0;
margin-left: 0;
border: none;
padding: 0;
i {
display: none;
}
a {
font-size: 13px;
padding: 0;
width: 50%;
float: left;
}
&:after {
@include clear();
}
}
}
}
}
}
.inshow {
display: block !important;
right: 0 !important;
opacity: 1!important;
transform: rotateX(0deg)!important;
-webkit-transform: rotateX(0deg)!important;
z-index: 999;
}
.banner {
height: 47.5vw;
min-height: auto;
margin-top: 55px;
.swiper-pagination {
bottom: 15px;
}
.swiper-pagination-bullet {
width: 30px;
}
}
.back {
display: none !important;
opacity: 0 !important;
}
.mt80 {
margin-top: 40px;
}
.mt50 {
margin-top: 30px;
}
.mt35 {
margin-top: 20px;
}
.mt30 {
margin-top: 20px;
}
.mt40 {
margin-top: 30px;
}
.title {
font-size: 24px;
margin-top: 15px;
}
.index-about {
.wrap {
display: block;
.left {
display: block;
}
.right {
width: 100%;
margin-top: 20px;
.text {
font-size: 14px;
-webkit-line-clamp: 25;
}
}
.icon {
display: none;
}
}
}
.index-about {
.num-list {
flex-wrap: wrap;
li {
width: 48%;
padding: 20px 0;
margin-bottom: 10px;
border-radius: 5px;
.num {
span {
font-size: 36px;
i {
font-size: 30px;
right: -22px;
}
}
}
.st {
font-size: 16px;
margin-top: 8px;
}
}
}
}
.index-business {
width: 100%;
overflow-x: hidden;
.list {
display: block;
.left {
width: 100%;
.text {
.icon {
max-width: 60px;
}
.st {
font-size: 18px;
}
}
}
.right {
width:calc(100% + 6px);
margin-top: 2px;
margin-left: -6px;
}
.hot {
width: 100px;
height: 50px;
font-size: 16px;
border-radius: 0 20px 0 0;
}
.text {
.icon {
max-width: 40px;
}
.st {
font-size: 15px;
}
}
}
}
.index-mission {
width: 100%;
overflow-x: hidden;
.list {
display: block;
.left {
width: 100%;
}
.right {
width: 100%;
li {
padding: 10px;
.img {
width: 130px;
}
.text {
left: 150px;
h3 {
font-size: 16px;
font-weight: bold;
}
.st {
font-size: 14px;
}
}
}
}
}
}
.index-locate {
width: 100%;
overflow-x: hidden;
.list {
.hd {
ul {
li {
font-size: 14px;
height: 40px;
}
}
}
}
}
.index-news {
width: 100%;
overflow-x: hidden;
.list {
li {
flex-direction: column-reverse;
padding: 25px 0;
.text {
width: 100%;
margin-top: 20px;
h3 {
font-size: 18px;
margin: 10px 0;
}
.st {
font-size: 14px;
line-height: 1.8;
}
.links {
margin-top:15px;
}
}
.img {
width: 100%;
}
}
}
}
.footer {
.wrap {
display: block;
padding: 22px 0;
.left {
width: 100%;
.email {
display: block;
margin-top: 5px;
li {
margin-top: 15px;
margin-right: 0;
}
}
}
.right {
width: 100%;
margin-top: 25px;
flex-wrap: wrap;
.list {
width: 33.3%;
margin-bottom: 25px;
text-align: left;
h3 {
a {
font-size: 16px;
}
}
a {
font-size: 13px;
margin-top: 10px;
}
}
}
}
}
.fixed-height {
height: 55px;
}
.inner-banenr {
width: 100%;
overflow: hidden;
@include flex(center,center);
img {
width: auto;
height:75px;
}
}
.inner-nav {
padding: 2px 0;
.wrap {
.left {
font-size: 14px;
}
.form {
display: none;
}
}
}
.inner-nav2 {
.wrap {
flex-wrap: wrap;
justify-content: space-between;
a {
font-size: 15px;
height: 38px;
line-height: 38px;
width: 48.5%;
margin-right: 0;
padding: 0;
text-align: center;
margin-bottom: 10px;
}
}
}
.title2 {
font-size: 21px;
}
.party-list {
ul {
width: 100%;
overflow-x: hidden;
margin-top: 10px;
display: block;
li {
padding: 25px 0;
a {
display: block;
}
.img {
width: 100%;
}
.text {
padding: 0px;
h3 {
font-size: 18px;
margin-top: 15px;
}
.link {
margin-top: 20px;
}
}
.time {
bottom: 10px;
}
}
}
.list-show {
padding: 60px 0 100px 0;
span {
display: block;
font-size: 18px;
margin: 0;
margin-bottom: 15px;
}
}
}
.pageing {
flex-wrap: wrap;
margin-top: 30px;
a {
2023-07-26 08:43:01 +00:00
height: 30px;
line-height: 30px;
font-size: 13px;
margin:0 5px 8px 5px;
}
.layui-laypage span {
2023-07-25 09:22:32 +00:00
margin:0 5px 8px 5px;
2023-07-26 08:43:01 +00:00
font-size: 13px;
height: 30px;
line-height: 30px;
background: #ebebeb;
2023-07-25 09:22:32 +00:00
}
}
.about-list {
#maps {
height: 300px;
}
.list {
margin-top: 40px;
h3 {
font-size: 18px;
}
.int {
margin-top: 25px;
font-size: 15px;
}
}
}
.news-list {
margin-left: -2.5%;
.boxs {
width: 47.5%;
margin-top: 25px;
margin-left: 2.5%;
.text {
padding: 15px 7px;
h3 {
font-size: 16px;
font-weight: bold;
}
.st {
font-size: 14px;
margin:8px 0 15px 0;
line-height: 20px;
height: 40px;
-webkit-line-clamp: 2;
}
.tit {
display: block;
.links {
display: none;
}
}
}
}
}
.zgsdt {
.boxs {
width: 97.5%;
.text {
padding:15px;
.tit {
.links {
display: block;
}
}
}
}
}
.news-show {
.cons {
margin-top: 40px;
font-size: 15px;
}
}
.talent-list {
.boxs {
padding: 28px 0;
.talent-top {
.tit {
font-size: 16px;
line-height: 1.6;
}
.text {
margin-top: 10px;
display: block;
.link {
display: none;
}
.time {
display: block;
span {
margin-top: 10px;
display: block;
margin-left: 0;
margin-right: 10px;
}
}
}
.int {
font-size: 16px;
top: auto;
bottom: -7px;
}
}
.talent-bottom {
font-size: 14px;
padding: 20px;
.tit {
font-size: 18px;
}
}
}
}
.platform-banner {
margin-top: 20px;
.img {
img {
width: auto;
height: 200px;
}
}
.text {
font-size: 28px;
}
.us {
a {
font-size: 14px;
width: 22%;
}
}
}
.download {
flex-wrap: wrap;
justify-content: space-between;
.boxs {
width: 48%;
margin-bottom: 15px;
.text {
height: 45px;
font-size: 14px;
}
}
}
.zc-text {
display: block;
span {
display: block;
font-size: 16px;
text-align: center;
margin-bottom: 12px;
}
}
.zjct-content {
&::after {
display: none;
}
.top-list {
display: block;
.left {
width: 100%;
padding-right: 0;
font-size: 16px;
line-height: 2;
}
.right {
max-width: 100%;
float: left;
margin-top: 20px;
img {
max-width: 100%;
}
&:before {
display: none;
}
&:after {
display: none;
}
}
}
.bottom-list {
padding-top: 1px;
.boxs {
padding:20px 15px;
}
}
}
.leader-content {
.list {
.swiper-slide {
.text {
font-size: 16px;
margin-top: 15px;
}
}
}
.swiper-button-prev {
display: none;
}
.swiper-button-next {
display: none;
}
}
.honor-content {
.list {
margin-left: -1.5%;
.boxs {
width: 98.5%;
margin-left: 1.5%;
padding: 10px;
margin-bottom: 20px;
.text {
font-size: 16px;
margin-top: 15px;
}
}
}
}
.plan-content {
.list {
padding: 25px 15px;
}
}
.business-content {
.list {
.bd {
.boxs {
.img {
height: 50vw;
}
}
}
.hd {
ul {
position: relative;
bottom: 0;
li {
background-color: #f6f6f6;
width: 20%;
margin: 0;
height: 60px;
font-size: 14px;
text-align: center;
a {
padding: 0 5px;
box-sizing: border-box;
}
}
}
}
}
}
}