all
This commit is contained in:
@@ -0,0 +1,266 @@
|
||||
page,body {
|
||||
width: 100%;
|
||||
min-width: 1310px;
|
||||
min-height: 100%;
|
||||
background: #FFFFFF;
|
||||
font-size: 20px;
|
||||
color: #1A1A1A;
|
||||
// font-family: "\u601d\u6e90\u9ed1\u4f53", Source Han sans-serif;
|
||||
font-family:"Source Han Sans CN", sans-serif;
|
||||
font-weight: 400;
|
||||
// display: flex;
|
||||
// &>view{
|
||||
// flex: 1;
|
||||
// width: 100%;
|
||||
// }
|
||||
user-select: text;
|
||||
-webkit-user-select: text;
|
||||
}
|
||||
view,div,input,textarea{
|
||||
box-sizing: border-box;
|
||||
}
|
||||
button{
|
||||
height: 88rpx;
|
||||
border-radius: 44rpx;
|
||||
line-height: 88rpx;
|
||||
text-align: center;
|
||||
font-size: 32rpx;
|
||||
}
|
||||
button[type=primary]{
|
||||
background: linear-gradient(to right,#34cb67,#17b54d);
|
||||
color: #FFFFFF;
|
||||
box-shadow: #BAE9CA 0 20rpx 20rpx;
|
||||
}
|
||||
button[loading][type=primary]{
|
||||
background: linear-gradient(to right,#34cb67,#17b54d);
|
||||
}
|
||||
.button-hover[type=primary]{
|
||||
background: linear-gradient(to right,#34cb67,#17b54d);
|
||||
}
|
||||
.bg-white{
|
||||
background-color: #FFFFFF !important;
|
||||
}
|
||||
.text-ellipsis{
|
||||
word-wrap: normal;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
}
|
||||
.text-ellipsis-2{
|
||||
display: -webkit-box;
|
||||
word-break: break-all;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-line-clamp: 2;
|
||||
}
|
||||
.uni-page-head {
|
||||
text-align: center;
|
||||
}
|
||||
.fl{
|
||||
float: left;
|
||||
}
|
||||
.fr{
|
||||
float: right;
|
||||
}
|
||||
.clear-b{
|
||||
clear: both;
|
||||
&::after{
|
||||
clear: both;
|
||||
}
|
||||
}
|
||||
.clear-l{
|
||||
clear: left;
|
||||
}
|
||||
.clear-r{
|
||||
clear: right;
|
||||
}
|
||||
/*display*/
|
||||
.d-f {
|
||||
display: flex;
|
||||
}
|
||||
.d-c-c {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
.d-c-s {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: flex-start;
|
||||
}
|
||||
.d-s-c {
|
||||
display: flex;
|
||||
justify-content: flex-start;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.d-s-s {
|
||||
display: flex;
|
||||
justify-content: flex-start;
|
||||
align-items: flex-start;
|
||||
}
|
||||
.d-e-c {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
align-items: center;
|
||||
}
|
||||
.d-b-c {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
.d-b-s {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: flex-start;
|
||||
}
|
||||
.d-b-e {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: flex-end;
|
||||
}
|
||||
.d-a-c {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
align-items: center;
|
||||
}
|
||||
.d-c {
|
||||
flex-direction: column;
|
||||
}
|
||||
.d-r {
|
||||
flex-direction: row;
|
||||
}
|
||||
.d-stretch {
|
||||
align-items: stretch;
|
||||
align-content: stretch;
|
||||
}
|
||||
.f-w {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
/*font*/
|
||||
.f20 {
|
||||
font-size: 20rpx !important;
|
||||
}
|
||||
.f22 {
|
||||
font-size: 22rpx !important;
|
||||
}
|
||||
.f24 {
|
||||
font-size: 24rpx !important;
|
||||
}
|
||||
.f26 {
|
||||
font-size: 26rpx !important;
|
||||
}
|
||||
.f28 {
|
||||
font-size: 28rpx !important;
|
||||
}
|
||||
.f30 {
|
||||
font-size: 30rpx !important;
|
||||
}
|
||||
.f32 {
|
||||
font-size: 32rpx !important;
|
||||
}
|
||||
.f34 {
|
||||
font-size: 34rpx !important;
|
||||
}
|
||||
.f36 {
|
||||
font-size: 36rpx !important;
|
||||
}
|
||||
.f40 {
|
||||
font-size: 40rpx !important;
|
||||
}
|
||||
.f50 {
|
||||
font-size: 50rpx !important;
|
||||
}
|
||||
.f60 {
|
||||
font-size: 60rpx !important;
|
||||
}
|
||||
.fb {
|
||||
font-weight: bold !important;
|
||||
}
|
||||
.fn{
|
||||
font-weight: normal !important;
|
||||
}
|
||||
/*text align*/
|
||||
.tc {
|
||||
text-align: center;
|
||||
}
|
||||
.tr {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
/*overflow*/
|
||||
.o-h {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/*word*/
|
||||
.w-b {
|
||||
word-wrap: break-word
|
||||
}
|
||||
|
||||
/*flex*/
|
||||
.flex-1 {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.w-s-n {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.text-l-t {
|
||||
text-decoration: line-through;
|
||||
}
|
||||
.color-white{
|
||||
color: #FFFFFF;
|
||||
}
|
||||
.pd-30-lr{
|
||||
padding-left: 30rpx;
|
||||
padding-right: 30rpx;
|
||||
}
|
||||
.mg-30-lr{
|
||||
margin-left: 30rpx;
|
||||
margin-right: 30rpx;
|
||||
}
|
||||
|
||||
.mg-100-l{
|
||||
margin-left: 100px;
|
||||
}
|
||||
.mg-t-30{
|
||||
margin-top: 30px;
|
||||
}
|
||||
.mg-b-30{
|
||||
margin-bottom: 30px !important;
|
||||
}
|
||||
|
||||
.border-none{
|
||||
border: none !important;
|
||||
}
|
||||
.border-b-none{
|
||||
border-bottom: none !important;
|
||||
}
|
||||
.border-t-none{
|
||||
border-top: none !important;
|
||||
}
|
||||
.border-l-none{
|
||||
border-left: none !important;
|
||||
}
|
||||
.border-r-none{
|
||||
border-right: none !important;
|
||||
}
|
||||
.radius-50{
|
||||
border-radius: 50%;
|
||||
}
|
||||
.color-999{
|
||||
color: #999 !important;
|
||||
}
|
||||
.color-666{
|
||||
color: #666 !important;
|
||||
}
|
||||
.color-red{
|
||||
color: #E03333 !important;
|
||||
}
|
||||
.color-green{
|
||||
color: #18B54E !important;
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
@font-face {
|
||||
font-family: "iconfont"; /* Project id 2708245 */
|
||||
src: url('//at.alicdn.com/t/font_2708245_a5f06yu4m24.eot?t=1627960875803'); /* IE9 */
|
||||
src: url('//at.alicdn.com/t/font_2708245_a5f06yu4m24.eot?t=1627960875803#iefix') format('embedded-opentype'), /* IE6-IE8 */
|
||||
url('data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAAAO4AAsAAAAACGAAAANrAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGYACDSAqDSIMKATYCJAMYCw4ABCAFhGcHUxtRBxEVnNHIfhzGbpPO1ceOalhpoon27nvw/FfX130Rkfkh529JhYZd1QBWoHeAltnCzCznVAC8nPbTeITqkm+nnz5NILOlR/j1P/fuuWUdf+G61nIcc9letDBK8ywLo71tLEtwef3/Re0P00sciE/7IEAkVWiEatGqQw9ixwycMo5MDF6lQJkqY0YOH0g412JGUoVwBHvuVIOswwK1XN0H1qbPl29Uk3BQWBpvpy7DWg7hpmu7Hh0IBeij3xPYLw92V4AFaKDCzfQyZ9w6DZ37K6CJ7GttaAdEE47C7PqILNdxW7qeUIia0HMK0f6/PBA0BoUFYgOTowHogAMWuHZIhYCbRYUG16HCgNuSCgWuJwcLAHvHLhHAPOAEGF9ME42gUEg0+EtSsjOMCZ8dv+Jw8EhUwspDgYP+comxK1KHbQmmDd96YN+h7duShwzdHJ9h72Tvlr0HAymeHpsCh1am+TybDxwJpnp9W4OHVyT3WeF9+TJAgr5Xr5CVnhcvkECP58+X10kkjo4Kj5wcOazL0CFdh9f7u7VfbI2c6rHQWz2nRkzdijW7RizkQHZbGjuWzY645A/9+38oE2UtW7K40D9iWUNv5PY+h+ejLp04ceU3weETJzNC/rT8y0wnL/9GOHLixDKH84flXz79JfQr7e2sXu30Lu33OGAlrKJ2b6df6eOeLA7QiddOpzj66DXx+x/4PaoPm7cwhZb6qfoIod/qmU5KiQEjOhj8or7ptH/8GZrOO5vQP67Bf+FRBoAPlYYdgYL53H8kw3D/aGMYIBQywgNgG0aKhmYEOIKaaAAUEOmXwS90JvJxL3nS7GQQwkkqQRFGFmjCKUQZXDmwiKIa2ITTECIpT8vZUSQxAY2YCMBhIQAhnkOgiOUSaOK5hTK4V2CRyiewied/iMQrMctF4RDEHgWNooPxD9HyTIFC03pv6N/FSJfnhVIjdEHfdM3QFWeULUbUjx9UCUh4ggvdDUthWIQTWm2C6nJoW+q7SWN5Wh0FjaIDxj8QLc8Ul9b6+93Qv4uRmaiXWSrmoPqBnoZuBuoqnWcVvckq9eMHVAkgAcEJuHAzFuNnYOnvlNBqQ1jhXQ60fimaK23Ol0+PuAqIxLuDLUq0GLHEljCihxgOZvYTC8670di8t4Urbo1ze4k+6GoFAA==') format('woff2'),
|
||||
url('//at.alicdn.com/t/font_2708245_a5f06yu4m24.woff?t=1627960875803') format('woff'),
|
||||
url('//at.alicdn.com/t/font_2708245_a5f06yu4m24.ttf?t=1627960875803') format('truetype'),
|
||||
url('//at.alicdn.com/t/font_2708245_a5f06yu4m24.svg?t=1627960875803#iconfont') format('svg');
|
||||
}
|
||||
|
||||
.iconfont {
|
||||
font-family: "iconfont" !important;
|
||||
font-size: 16px;
|
||||
font-style: normal;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.icon-daohangmoren:before {
|
||||
content: "\e606";
|
||||
}
|
||||
|
||||
.icon-back:before {
|
||||
content: "\e645";
|
||||
}
|
||||
|
||||
.icon-close:before {
|
||||
content: "\e61b";
|
||||
}
|
||||
|
||||
.icon-add:before {
|
||||
content: "\e626";
|
||||
}
|
||||
|
||||
.icon-right:before {
|
||||
content: "\e655";
|
||||
}
|
||||
@@ -0,0 +1,345 @@
|
||||
[class*="icon-"] {
|
||||
font-family: "iconfont";
|
||||
font-size: inherit;
|
||||
font-style: normal;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
.line{
|
||||
height: 20rpx;
|
||||
background-color: #F0F0F0;
|
||||
}
|
||||
.max-width{
|
||||
width: 1600px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
*{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.box-content{
|
||||
box-sizing: content-box;
|
||||
}
|
||||
.box-border{
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.bgc-e6{
|
||||
background-color: #E6E6E6;
|
||||
}
|
||||
.bgc-13{
|
||||
background-color: #131313;
|
||||
}
|
||||
.bgc-02{
|
||||
background-color: #020202;
|
||||
}
|
||||
|
||||
.bgc-fc{
|
||||
background-color: #F1F9FC;
|
||||
}
|
||||
.ptm-80{
|
||||
padding-bottom: 80px;
|
||||
}
|
||||
.ptm-120{
|
||||
padding-bottom: 120px;
|
||||
}
|
||||
a{
|
||||
color: #1A1A1A;
|
||||
text-decoration: none;
|
||||
&:visited{
|
||||
color: #1A1A1A;
|
||||
}
|
||||
}
|
||||
.index-title{
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
.index-title-left{
|
||||
font-size: 30px;
|
||||
font-weight: bold;
|
||||
height: 100px;
|
||||
line-height: 100px;
|
||||
position: relative;
|
||||
&::before{
|
||||
content: '';
|
||||
width: 100%;
|
||||
height: 4px;
|
||||
background: linear-gradient(to right,#F48612,#F48612);
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
}
|
||||
.index-title-right{
|
||||
width: 142px;
|
||||
height: 42px;
|
||||
background-color: #F0F0F0;
|
||||
border-radius: 21px 0 21px 0;
|
||||
font-size: 20px;
|
||||
color: #F48612;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
&:visited{
|
||||
color: #F48612;
|
||||
}
|
||||
.index-title-img{
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
margin-left: 12px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.zhishu-left{
|
||||
width: 324px;
|
||||
.zhishu-box{
|
||||
margin-bottom: 70px;
|
||||
.zhishu-title{
|
||||
height: 60px;
|
||||
background: linear-gradient(to right,#15C8DA,#18B650);
|
||||
line-height: 60px;
|
||||
text-align: center;
|
||||
font-size: 26px;
|
||||
color: #FFFFFF;
|
||||
font-weight: bold;
|
||||
}
|
||||
.zhishu-item{
|
||||
height: 55px;
|
||||
border: 1px solid #15C5C0;
|
||||
border-top: none;
|
||||
font-size: 22px;
|
||||
text-align: center;
|
||||
line-height: 54px;
|
||||
vertical-align: middle;
|
||||
position: relative;
|
||||
}
|
||||
.zhishu-item-active{
|
||||
color: #18B54E !important;
|
||||
&::before{
|
||||
content: '';
|
||||
display: inline-block;
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
margin-right: 15px;
|
||||
}
|
||||
&::after{
|
||||
content: '';
|
||||
display: inline-block;
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
background: url(/static/img/Thearrow@2x.png) no-repeat;
|
||||
background-size: 100% 100%;
|
||||
margin-left: 15px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.zhishu-right{
|
||||
width: 910px;
|
||||
position: relative;
|
||||
}
|
||||
.common-head{
|
||||
height: 106px;
|
||||
line-height: 106px;
|
||||
font-size: 20px;
|
||||
}
|
||||
.mg-10-lr{
|
||||
margin: 0 10px;
|
||||
}
|
||||
.table-box{
|
||||
margin: 36px 16px 12px;
|
||||
border-top: 1px solid #E7E7E4;
|
||||
border-left: 1px solid #E7E7E4;
|
||||
max-height: 800px;
|
||||
.table-item{
|
||||
display: flex;
|
||||
&>.table-item-inline{
|
||||
font-size: 22px;
|
||||
height: 70px;
|
||||
line-height: 70px;
|
||||
text-align: center;
|
||||
border-right: 1px solid #E7E7E4;
|
||||
border-bottom: 1px solid #E7E7E4;
|
||||
&:nth-child(1){
|
||||
width: 10%;
|
||||
}
|
||||
&:nth-child(2){
|
||||
width: 22%;
|
||||
}
|
||||
&:nth-child(3){
|
||||
width: 24%;
|
||||
}
|
||||
&:nth-child(4){
|
||||
width: 22%;
|
||||
}
|
||||
&:nth-child(5){
|
||||
width: 22%;
|
||||
}
|
||||
}
|
||||
&:nth-of-type(2n){
|
||||
background-color: #F1F9FC;
|
||||
}
|
||||
&:first-of-type{
|
||||
background-color: #D0EBF7;
|
||||
}
|
||||
}
|
||||
}
|
||||
.news-item{
|
||||
display: flex;
|
||||
padding-bottom: 30px;
|
||||
border-bottom: 1px solid #9E9E9E;
|
||||
justify-content: space-between;
|
||||
width: 1383px;
|
||||
margin-bottom: 30px;
|
||||
.news-item-content{
|
||||
width: 1077px;
|
||||
|
||||
}
|
||||
.news-xian{
|
||||
border-bottom: 1px dashed #9E9E9E;
|
||||
padding: 16px 0;
|
||||
}
|
||||
.news_fm{
|
||||
width: 261px;
|
||||
height: 193px;
|
||||
}
|
||||
.news-item-title{
|
||||
padding-right: 20%;
|
||||
min-height: 50px;
|
||||
line-height: 30px;
|
||||
font-size: 20px;
|
||||
font-weight: bold;
|
||||
position: relative;
|
||||
font-size: 19px;
|
||||
color: #9E9E9E;
|
||||
.news-item-time{
|
||||
line-height: 30px;
|
||||
font-size: 20px;
|
||||
color: #999999;
|
||||
font-weight: normal;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
}
|
||||
}
|
||||
.news_desc{
|
||||
width: 1037px;
|
||||
font-size: 27px;
|
||||
font-weight: 400;
|
||||
color: #FFFFFF;
|
||||
line-height: 32px;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
.godetai{
|
||||
width: 120px;
|
||||
font-size: 19px;
|
||||
font-weight: 400;
|
||||
color: #9E9E9E;
|
||||
line-height: 32px;
|
||||
margin-top: 16px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.godetai:hover{
|
||||
color:#F48612;
|
||||
}
|
||||
.godetai:hover .go_img{
|
||||
background-image:url('@/static/img/index/go_c.png');
|
||||
}
|
||||
.go_img{
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
background-image:url('@/static/img/index/go.png');
|
||||
background-size: cover;
|
||||
margin-left: 10px;
|
||||
}
|
||||
.news-item-text{
|
||||
line-height: 27px;
|
||||
font-size: 19px;
|
||||
font-weight: 400;
|
||||
color: #9E9E9E;
|
||||
-webkit-line-clamp: 2;
|
||||
display: -webkit-box;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
&:last-of-type{
|
||||
// border-bottom: none;
|
||||
}
|
||||
}
|
||||
.pointer{
|
||||
cursor: pointer;
|
||||
}
|
||||
.border-bt-e6{
|
||||
border-bottom: 1px solid #E6E6E6 !important;
|
||||
}
|
||||
.border-bt-ccc{
|
||||
border-bottom: 1px solid #CCCCCC !important;
|
||||
}
|
||||
|
||||
// 选择日期
|
||||
.el-input{
|
||||
width: 210px !important;
|
||||
font-size: 16px !important;
|
||||
}
|
||||
.el-date-picker {
|
||||
width: 600px !important;
|
||||
}
|
||||
.el-input--prefix .el-input__inner{
|
||||
padding-left: 30px !important;
|
||||
}
|
||||
.el-input--suffix .el-input__inner{
|
||||
padding-right: 30px !important;
|
||||
}
|
||||
.el-input__icon{
|
||||
display: inline !important;
|
||||
width: 25px !important;
|
||||
height: 100% !important;
|
||||
line-height: 40px !important;
|
||||
}
|
||||
.el-input__inner{
|
||||
height: 40px !important;
|
||||
line-height: 40px !important;
|
||||
padding: 0 15px !important;
|
||||
}
|
||||
.el-input__prefix{
|
||||
left: 5px !important;
|
||||
}
|
||||
.el-input__suffix{
|
||||
right: 5px !important;
|
||||
}
|
||||
.el-date-picker .el-picker-panel__content {
|
||||
width: 600px !important;
|
||||
margin: 0 !important;
|
||||
padding: 15px;
|
||||
.el-date-table{
|
||||
font-size: 18px !important;
|
||||
td{
|
||||
padding: 8px 0 !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
.el-picker-panel__icon-btn {
|
||||
font-size: 18px !important;
|
||||
}
|
||||
|
||||
// 分页
|
||||
.el-pagination{
|
||||
padding: 100px 0 !important;
|
||||
text-align: center;
|
||||
.el-pager li,.btn-prev,.btn-next{
|
||||
min-width: 40px !important;
|
||||
padding: 0 10px;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
}
|
||||
}
|
||||
.el-pagination.is-background .el-pager li:not(.disabled).active{
|
||||
background-color: #F48612 !important;
|
||||
}
|
||||
.el-paginations.is-background .el-pager li:not(.disabled).active{
|
||||
background-color: none !important;
|
||||
}
|
||||
Reference in New Issue
Block a user